use of mage.game.mulligan.Mulligan in project mage by magefree.
the class BrawlFreeForAllMatch method startGame.
@Override
public void startGame() throws GameException {
int startLife = 30;
Mulligan mulligan = options.getMulliganType().getMulligan(options.getFreeMulligans());
BrawlFreeForAll game = new BrawlFreeForAll(options.getAttackOption(), options.getRange(), mulligan, startLife);
game.setStartMessage(this.createGameStartMessage());
game.setCheckCommanderDamage(false);
initGame(game);
games.add(game);
}
Aggregations