diff --git a/Mage.Server.Plugins/Mage.Deck.Constructed/src/mage/deck/CenturionCommander.java b/Mage.Server.Plugins/Mage.Deck.Constructed/src/mage/deck/CenturionCommander.java index 1161ead562..f4e3977e6d 100644 --- a/Mage.Server.Plugins/Mage.Deck.Constructed/src/mage/deck/CenturionCommander.java +++ b/Mage.Server.Plugins/Mage.Deck.Constructed/src/mage/deck/CenturionCommander.java @@ -15,7 +15,6 @@ public class CenturionCommander extends Commander { banned.add("Balance"); banned.add("Bazaar of Baghdad"); banned.add("Black Lotus"); - banned.add("Cataclysm"); banned.add("Channel"); banned.add("Chaos Orb"); banned.add("Chrome Mox"); @@ -54,7 +53,6 @@ public class CenturionCommander extends Commander { banned.add("Parallax Tide"); banned.add("Protean Hulk"); banned.add("Sensei's Diving Top"); - banned.add("Serra Ascendant"); banned.add("Sharazad"); banned.add("Survival of the Fittest"); banned.add("Sol Ring"); @@ -66,9 +64,8 @@ public class CenturionCommander extends Commander { banned.add("Tolarian Academy"); banned.add("Treasure Cruise"); banned.add("Vampiric Tutor"); - banned.add("Vanishing"); - banned.add("Winter Orb"); banned.add("Yawgmoth's Bargain"); + banned.add("Thassa's Oracle"); bannedCommander.add("Baral, Chief of Compliance"); bannedCommander.add("Derevi, Empyrial Tactician"); @@ -76,11 +73,15 @@ public class CenturionCommander extends Commander { bannedCommander.add("Kess, Dissident Mage"); bannedCommander.add("Rofellos, Llanowar Emissary"); bannedCommander.add("Erayo, Soratami Ascendant"); + bannedCommander.add("Breya, Etherium Shaper"); + bannedCommander.add("Yuriko, the Tiger's Shadow"); bannedPartner.add("Rowan Kenrith"); bannedPartner.add("Tymna the Weaver"); bannedPartner.add("Will Kenrith"); bannedPartner.add("Vial Smasher The Fierce"); + bannedPartner.add("Kraum, Ludevic's Opus"); + bannedPartner.add("Thrasios, Triton Hero "); } } diff --git a/Mage.Server.Plugins/Mage.Game.CommanderDuel/src/mage/game/CommanderDuelMatch.java b/Mage.Server.Plugins/Mage.Game.CommanderDuel/src/mage/game/CommanderDuelMatch.java index a6008061ec..9a2290357b 100644 --- a/Mage.Server.Plugins/Mage.Game.CommanderDuel/src/mage/game/CommanderDuelMatch.java +++ b/Mage.Server.Plugins/Mage.Game.CommanderDuel/src/mage/game/CommanderDuelMatch.java @@ -22,9 +22,12 @@ public class CommanderDuelMatch extends MatchImpl { startLife = 20; // Starting with the Commander 2016 update (on November 11th, 2016), Duel Commander will be played with 20 life points instead of 30. checkCommanderDamage = false; // since nov 16 duel commander uses no longer commander damage rule } - if (options.getDeckType().equals("Variant Magic - MTGO 1v1 Commander") || options.getDeckType().equals("Variant Magic - Centurion Commander")) { + if (options.getDeckType().equals("Variant Magic - MTGO 1v1 Commander")) { startLife = 30; } + if (options.getDeckType().equals("Variant Magic - Centurion Commander")) { + startLife = 25; + } Mulligan mulligan = options.getMulliganType().getMulligan(options.getFreeMulligans()); CommanderDuel game = new CommanderDuel(options.getAttackOption(), options.getRange(), mulligan, startLife); game.setCheckCommanderDamage(checkCommanderDamage);