mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
26 lines
743 B
Java
26 lines
743 B
Java
package mage.game;
|
|
|
|
import mage.game.match.MatchImpl;
|
|
import mage.game.match.MatchOptions;
|
|
import mage.game.mulligan.Mulligan;
|
|
|
|
/**
|
|
* @author spjspj
|
|
*/
|
|
public class BrawlDuelMatch extends MatchImpl {
|
|
|
|
public BrawlDuelMatch(MatchOptions options) {
|
|
super(options);
|
|
}
|
|
|
|
@Override
|
|
public void startGame() throws GameException {
|
|
int startLife = 25;
|
|
Mulligan mulligan = options.getMulliganType().getMulligan(options.getFreeMulligans());
|
|
BrawlDuel game = new BrawlDuel(options.getAttackOption(), options.getRange(), mulligan, startLife);
|
|
game.setCheckCommanderDamage(false);
|
|
game.setStartMessage(this.createGameStartMessage());
|
|
initGame(game);
|
|
games.add(game);
|
|
}
|
|
}
|