foul-magics/Mage/src/main/java/mage/game/permanent/token/StitcherGeralfZombieToken.java
2018-06-02 17:59:49 +02:00

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);
}
}