Fix Phyrexian Wurm token name

This commit is contained in:
PurpleCrowbar 2023-02-25 14:43:58 +00:00
parent 580a69782c
commit 84ca77f5cb
3 changed files with 2 additions and 7 deletions

View file

@ -2015,8 +2015,3 @@
|Generate|TOK:ONC|Soldier|3||SoldierTokenWithHaste|
|Generate|TOK:ONC|Spirit|||SpiritWhiteToken|
|Generate|TOK:ONC|Thopter|||ThopterColorlessToken|

View file

@ -17,7 +17,7 @@ public final class HasteGolemToken extends TokenImpl {
}
public HasteGolemToken(int xValue) {
super("Golem Token", "X/X colorless Golem artifact creature token");
super("Golem Token", "X/X colorless Golem artifact creature token with haste");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.GOLEM);

View file

@ -35,4 +35,4 @@ public final class PhyrexianWurmToken extends TokenImpl {
public PhyrexianWurmToken copy() {
return new PhyrexianWurmToken(this);
}
}
}