forked from External/mage
35 lines
865 B
Java
35 lines
865 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class StitcherGeralfZombieToken extends TokenImpl {
|
|
|
|
public StitcherGeralfZombieToken() {
|
|
this(1);
|
|
}
|
|
public StitcherGeralfZombieToken(int xValue) {
|
|
super("Zombie", "X/X blue Zombie creature token");
|
|
setOriginalExpansionSetCode("C14");
|
|
setTokenType(1);
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlue(true);
|
|
subtype.add(SubType.ZOMBIE);
|
|
power = new MageInt(xValue);
|
|
toughness = new MageInt(xValue);
|
|
}
|
|
|
|
public StitcherGeralfZombieToken(final StitcherGeralfZombieToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public StitcherGeralfZombieToken copy() {
|
|
return new StitcherGeralfZombieToken(this);
|
|
}
|
|
}
|