mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Fix Phyrexian Wurm token name
This commit is contained in:
parent
580a69782c
commit
84ca77f5cb
3 changed files with 2 additions and 7 deletions
|
@ -2015,8 +2015,3 @@
|
|||
|Generate|TOK:ONC|Soldier|3||SoldierTokenWithHaste|
|
||||
|Generate|TOK:ONC|Spirit|||SpiritWhiteToken|
|
||||
|Generate|TOK:ONC|Thopter|||ThopterColorlessToken|
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -35,4 +35,4 @@ public final class PhyrexianWurmToken extends TokenImpl {
|
|||
public PhyrexianWurmToken copy() {
|
||||
return new PhyrexianWurmToken(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue