[DFT] Implement Country Roads

This commit is contained in:
theelk801 2025-01-24 12:38:08 -05:00
parent 7df1499108
commit 334655014d
8 changed files with 109 additions and 13 deletions

View file

@ -8,9 +8,9 @@ import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class PilotToken extends TokenImpl {
public final class PilotCrewToken extends TokenImpl {
public PilotToken() {
public PilotCrewToken() {
super("Pilot Token", "1/1 colorless Pilot creature token with \"This creature crews Vehicles as though its power were 2 greater.\"");
cardType.add(CardType.CREATURE);
subtype.add(SubType.PILOT);
@ -19,11 +19,11 @@ public final class PilotToken extends TokenImpl {
addAbility(new CrewIncreasedPowerAbility());
}
private PilotToken(final PilotToken token) {
private PilotCrewToken(final PilotCrewToken token) {
super(token);
}
public PilotToken copy() {
return new PilotToken(this);
public PilotCrewToken copy() {
return new PilotCrewToken(this);
}
}

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.common.CrewSaddleIncreasedPowerAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class PilotSaddleCrewToken extends TokenImpl {
public PilotSaddleCrewToken() {
super("Pilot Token", "1/1 colorless Pilot creature token with \"This creature saddles Mounts and crews Vehicles as though its power were 2 greater.\"");
cardType.add(CardType.CREATURE);
subtype.add(SubType.PILOT);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(new CrewSaddleIncreasedPowerAbility());
}
private PilotSaddleCrewToken(final PilotSaddleCrewToken token) {
super(token);
}
public PilotSaddleCrewToken copy() {
return new PilotSaddleCrewToken(this);
}
}