mirror of
https://github.com/correl/mage.git
synced 2025-03-30 01:03:57 -09:00
Fix Phyrexian Wurm token name
This commit is contained in:
parent
580a69782c
commit
84ca77f5cb
3 changed files with 2 additions and 7 deletions
Mage.Client/src/main/resources
Mage/src/main/java/mage/game/permanent/token
|
@ -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…
Add table
Reference in a new issue