mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08: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
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue