fix Skeletonize token type

... but the card is currently broken and doesn't create the token
This commit is contained in:
Neil Gentleman 2015-10-28 21:47:14 -07:00
parent 3c24b9fe47
commit 35052f806d

View file

@ -152,7 +152,7 @@ class SkeletonToken extends Token {
super("Skeleton", "1/1 black Skeleton creature token with \"{B}: Regenerate this creature.\""); super("Skeleton", "1/1 black Skeleton creature token with \"{B}: Regenerate this creature.\"");
this.cardType.add(CardType.CREATURE); this.cardType.add(CardType.CREATURE);
this.color = ObjectColor.BLACK; this.color = ObjectColor.BLACK;
this.subtype.add("Bat"); this.subtype.add("Skeleton");
this.power = new MageInt(1); this.power = new MageInt(1);
this.toughness = new MageInt(1); this.toughness = new MageInt(1);