[DRC] Pia Nalaar, Chief Mechanic

This commit is contained in:
jmlundeen 2025-03-05 21:49:28 -06:00
parent e5846d8d0a
commit 5d61b8fb11
3 changed files with 127 additions and 0 deletions

View file

@ -0,0 +1,28 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.CrewAbility;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
public class NalaarAetherjetToken extends TokenImpl{
public NalaarAetherjetToken(int xValue) {
super("Nalaar Aetherjet", "X/X colorless Vehicle artifact token named Nalaar Aetherjet with flying and crew 2");
cardType.add(CardType.ARTIFACT);
subtype.add(SubType.VEHICLE);
power = new MageInt(xValue);
toughness = new MageInt(xValue);
addAbility(FlyingAbility.getInstance());
addAbility(new CrewAbility(2));
}
private NalaarAetherjetToken(final NalaarAetherjetToken token) {
super(token);
}
public NalaarAetherjetToken copy() {
return new NalaarAetherjetToken(this);
}
}