foul-magics/Mage/src/main/java/mage/game/permanent/token/WallToken.java
2020-02-05 02:17:00 +04:00

32 lines
719 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.DefenderAbility;
/**
*
* @author spjspj
*/
public final class WallToken extends TokenImpl {
public WallToken() {
super("", "2/6 white wall creature with defender");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.WALL);
power = new MageInt(2);
toughness = new MageInt(6);
this.addAbility(DefenderAbility.getInstance());
}
public WallToken(final WallToken token) {
super(token);
}
public WallToken copy() {
return new WallToken(this);
}
}