mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Wurmcoil Engine token fix
This commit is contained in:
parent
85430928d8
commit
5f3209a592
1 changed files with 2 additions and 0 deletions
|
@ -73,6 +73,7 @@ public class WurmcoilEngine extends CardImpl<WurmcoilEngine> {
|
|||
class Wurm1Token extends Token {
|
||||
public Wurm1Token() {
|
||||
super("Wurm", "a 3/3 colorless Wurm artifact creature token with deathtouch");
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add("Wurm");
|
||||
power = new MageInt(3);
|
||||
|
@ -84,6 +85,7 @@ class Wurm1Token extends Token {
|
|||
class Wurm2Token extends Token {
|
||||
public Wurm2Token() {
|
||||
super("Wurm", "a 3/3 colorless Wurm artifact creature token with lifelink");
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add("Wurm");
|
||||
power = new MageInt(3);
|
||||
|
|
Loading…
Reference in a new issue