mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 05:09:16 -08:00
35 lines
746 B
Java
35 lines
746 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 BrawlDuel extends GameCommanderImpl {
|
|
|
|
public BrawlDuel(MultiplayerAttackOption attackOption, RangeOfInfluence range, Mulligan mulligan, int startLife) {
|
|
super(attackOption, range, mulligan, startLife);
|
|
}
|
|
|
|
public BrawlDuel(final BrawlDuel game) {
|
|
super(game);
|
|
}
|
|
|
|
@Override
|
|
public MatchType getGameType() {
|
|
return new BrawlDuelType();
|
|
}
|
|
|
|
@Override
|
|
public int getNumPlayers() {
|
|
return 2;
|
|
}
|
|
|
|
@Override
|
|
public BrawlDuel copy() {
|
|
return new BrawlDuel(this);
|
|
}
|
|
|
|
}
|