forked from External/mage
Fixed miss default token constructors
This commit is contained in:
parent
54a1efec63
commit
1fcdbe4b63
7 changed files with 29 additions and 0 deletions
|
|
@ -9,6 +9,10 @@ import java.util.Arrays;
|
|||
|
||||
public class ZombieMenaceToken extends TokenImpl {
|
||||
|
||||
public ZombieMenaceToken() {
|
||||
this(0);
|
||||
}
|
||||
|
||||
public ZombieMenaceToken(int xValue) {
|
||||
super("Zombie", "X/X blue and black Zombie creature token with menace");
|
||||
cardType.add(CardType.CREATURE);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue