forked from External/mage
fix type ordering on some Artifact Creature tokens
This commit is contained in:
parent
454627eaf6
commit
9eca83dd7e
20 changed files with 27 additions and 28 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue