[WAR] - added token image;

This commit is contained in:
Oleg Agafonov 2019-04-03 13:02:21 +04:00
parent c6e262b0ed
commit 6c3b48b2a7
3 changed files with 10 additions and 8 deletions

View file

@ -0,0 +1,32 @@
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);
}
}