[DFT] Implement Chandra, Spark Hunter

This commit is contained in:
theelk801 2025-02-03 14:19:17 -05:00
parent 70868ad4ab
commit c0ccbe2a2b
4 changed files with 147 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.CrewAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class VehicleToken extends TokenImpl {
public VehicleToken() {
super("Vehicle Token", "3/2 colorless Vehicle artifact token with crew 1");
cardType.add(CardType.ARTIFACT);
subtype.add(SubType.VEHICLE);
power = new MageInt(3);
toughness = new MageInt(2);
this.addAbility(new CrewAbility(1));
}
private VehicleToken(final VehicleToken token) {
super(token);
}
public VehicleToken copy() {
return new VehicleToken(this);
}
}