mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
* Implemented Yorion, Sky Nomad * Implemented Yorion, Sky Nomad (but for real this time) * updated game creation to use the correct deck size for limited
28 lines
804 B
Java
28 lines
804 B
Java
|
|
package mage.game;
|
|
|
|
import mage.constants.MultiplayerAttackOption;
|
|
import mage.constants.PhaseStep;
|
|
import mage.constants.RangeOfInfluence;
|
|
import mage.game.mulligan.Mulligan;
|
|
import mage.game.turn.TurnMod;
|
|
|
|
import java.util.UUID;
|
|
|
|
public abstract class GameCanadianHighlanderImpl extends GameImpl {
|
|
|
|
public GameCanadianHighlanderImpl(MultiplayerAttackOption attackOption, RangeOfInfluence range, Mulligan mulligan, int startLife) {
|
|
super(attackOption, range, mulligan, startLife, 100);
|
|
}
|
|
|
|
public GameCanadianHighlanderImpl(final GameCanadianHighlanderImpl game) {
|
|
super(game);
|
|
}
|
|
|
|
@Override
|
|
protected void init(UUID choosingPlayerId) {
|
|
super.init(choosingPlayerId);
|
|
state.getTurnMods().add(new TurnMod(startingPlayerId, PhaseStep.DRAW));
|
|
}
|
|
|
|
}
|