1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 01:08:59 -09:00

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.\"");
this.cardType.add(CardType.CREATURE);
this.color = ObjectColor.BLACK;
this.subtype.add("Bat");
this.subtype.add("Skeleton");
this.power = new MageInt(1);
this.toughness = new MageInt(1);