mirror of
https://github.com/correl/mage.git
synced 2025-01-03 19:17:30 +00:00
8494e98693
* Implemented Yorion, Sky Nomad * Implemented Yorion, Sky Nomad (but for real this time) * updated game creation to use the correct deck size for limited
35 lines
779 B
Java
35 lines
779 B
Java
|
|
|
|
package mage.game;
|
|
|
|
import mage.constants.MultiplayerAttackOption;
|
|
import mage.constants.RangeOfInfluence;
|
|
import mage.game.match.MatchType;
|
|
import mage.game.mulligan.Mulligan;
|
|
|
|
public class CommanderDuel extends GameCommanderImpl {
|
|
|
|
public CommanderDuel(MultiplayerAttackOption attackOption, RangeOfInfluence range, Mulligan mulligan, int startLife) {
|
|
super(attackOption, range, mulligan, startLife, 100);
|
|
}
|
|
|
|
public CommanderDuel(final CommanderDuel game) {
|
|
super(game);
|
|
}
|
|
|
|
@Override
|
|
public MatchType getGameType() {
|
|
return new CommanderDuelType();
|
|
}
|
|
|
|
@Override
|
|
public int getNumPlayers() {
|
|
return 2;
|
|
}
|
|
|
|
@Override
|
|
public CommanderDuel copy() {
|
|
return new CommanderDuel(this);
|
|
}
|
|
|
|
}
|