mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
fix Skeletonize token type
... but the card is currently broken and doesn't create the token
This commit is contained in:
parent
3c24b9fe47
commit
35052f806d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue