mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Update Centurion banlist and lifepoints (#7039)
* Update Centurion lifepoints * Update Centurion banlist * Fix Centurion banlist Co-authored-by: acosta <andrea.costa@cybrain.it>
This commit is contained in:
parent
025a3edf9f
commit
b05397f68d
2 changed files with 9 additions and 5 deletions
|
@ -15,7 +15,6 @@ public class CenturionCommander extends Commander {
|
||||||
banned.add("Balance");
|
banned.add("Balance");
|
||||||
banned.add("Bazaar of Baghdad");
|
banned.add("Bazaar of Baghdad");
|
||||||
banned.add("Black Lotus");
|
banned.add("Black Lotus");
|
||||||
banned.add("Cataclysm");
|
|
||||||
banned.add("Channel");
|
banned.add("Channel");
|
||||||
banned.add("Chaos Orb");
|
banned.add("Chaos Orb");
|
||||||
banned.add("Chrome Mox");
|
banned.add("Chrome Mox");
|
||||||
|
@ -54,7 +53,6 @@ public class CenturionCommander extends Commander {
|
||||||
banned.add("Parallax Tide");
|
banned.add("Parallax Tide");
|
||||||
banned.add("Protean Hulk");
|
banned.add("Protean Hulk");
|
||||||
banned.add("Sensei's Diving Top");
|
banned.add("Sensei's Diving Top");
|
||||||
banned.add("Serra Ascendant");
|
|
||||||
banned.add("Sharazad");
|
banned.add("Sharazad");
|
||||||
banned.add("Survival of the Fittest");
|
banned.add("Survival of the Fittest");
|
||||||
banned.add("Sol Ring");
|
banned.add("Sol Ring");
|
||||||
|
@ -66,9 +64,8 @@ public class CenturionCommander extends Commander {
|
||||||
banned.add("Tolarian Academy");
|
banned.add("Tolarian Academy");
|
||||||
banned.add("Treasure Cruise");
|
banned.add("Treasure Cruise");
|
||||||
banned.add("Vampiric Tutor");
|
banned.add("Vampiric Tutor");
|
||||||
banned.add("Vanishing");
|
|
||||||
banned.add("Winter Orb");
|
|
||||||
banned.add("Yawgmoth's Bargain");
|
banned.add("Yawgmoth's Bargain");
|
||||||
|
banned.add("Thassa's Oracle");
|
||||||
|
|
||||||
bannedCommander.add("Baral, Chief of Compliance");
|
bannedCommander.add("Baral, Chief of Compliance");
|
||||||
bannedCommander.add("Derevi, Empyrial Tactician");
|
bannedCommander.add("Derevi, Empyrial Tactician");
|
||||||
|
@ -76,11 +73,15 @@ public class CenturionCommander extends Commander {
|
||||||
bannedCommander.add("Kess, Dissident Mage");
|
bannedCommander.add("Kess, Dissident Mage");
|
||||||
bannedCommander.add("Rofellos, Llanowar Emissary");
|
bannedCommander.add("Rofellos, Llanowar Emissary");
|
||||||
bannedCommander.add("Erayo, Soratami Ascendant");
|
bannedCommander.add("Erayo, Soratami Ascendant");
|
||||||
|
bannedCommander.add("Breya, Etherium Shaper");
|
||||||
|
bannedCommander.add("Yuriko, the Tiger's Shadow");
|
||||||
|
|
||||||
bannedPartner.add("Rowan Kenrith");
|
bannedPartner.add("Rowan Kenrith");
|
||||||
bannedPartner.add("Tymna the Weaver");
|
bannedPartner.add("Tymna the Weaver");
|
||||||
bannedPartner.add("Will Kenrith");
|
bannedPartner.add("Will Kenrith");
|
||||||
bannedPartner.add("Vial Smasher The Fierce");
|
bannedPartner.add("Vial Smasher The Fierce");
|
||||||
|
bannedPartner.add("Kraum, Ludevic's Opus");
|
||||||
|
bannedPartner.add("Thrasios, Triton Hero ");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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.
|
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
|
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;
|
startLife = 30;
|
||||||
}
|
}
|
||||||
|
if (options.getDeckType().equals("Variant Magic - Centurion Commander")) {
|
||||||
|
startLife = 25;
|
||||||
|
}
|
||||||
Mulligan mulligan = options.getMulliganType().getMulligan(options.getFreeMulligans());
|
Mulligan mulligan = options.getMulliganType().getMulligan(options.getFreeMulligans());
|
||||||
CommanderDuel game = new CommanderDuel(options.getAttackOption(), options.getRange(), mulligan, startLife);
|
CommanderDuel game = new CommanderDuel(options.getAttackOption(), options.getRange(), mulligan, startLife);
|
||||||
game.setCheckCommanderDamage(checkCommanderDamage);
|
game.setCheckCommanderDamage(checkCommanderDamage);
|
||||||
|
|
Loading…
Reference in a new issue