forked from External/mage
32 lines
769 B
Java
32 lines
769 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class ZombieArmyToken extends TokenImpl {
|
|
|
|
public ZombieArmyToken() {
|
|
super("Zombie Army", "0/0 black Zombie Army creature token");
|
|
setExpansionSetCodeForImage("WAR"); // default
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlack(true);
|
|
subtype.add(SubType.ZOMBIE);
|
|
subtype.add(SubType.ARMY);
|
|
power = new MageInt(0);
|
|
toughness = new MageInt(0);
|
|
}
|
|
|
|
private ZombieArmyToken(final ZombieArmyToken token) {
|
|
super(token);
|
|
}
|
|
|
|
@Override
|
|
public ZombieArmyToken copy() {
|
|
return new ZombieArmyToken(this);
|
|
}
|
|
}
|