fix type ordering on some Artifact Creature tokens

This commit is contained in:
xenohedron 2023-08-16 20:39:26 -04:00
parent 454627eaf6
commit 9eca83dd7e
20 changed files with 27 additions and 28 deletions

View file

@ -14,8 +14,8 @@ public final class TIEFighterToken extends TokenImpl {
super("TIE Fighter", "1/1 black Starship artifact creature tokens with Spaceflight named TIE Fighter");
this.power = new MageInt(1);
this.toughness = new MageInt(1);
cardType.add(CardType.CREATURE);
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
color.setBlack(true);
addAbility(SpaceflightAbility.getInstance());
subtype.add(SubType.STARSHIP);