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

32 lines
781 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 TidalWaveWallToken extends TokenImpl {
public TidalWaveWallToken() {
super("Wall", "5/5 blue Wall creature token with defender");
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.WALL);
power = new MageInt(5);
toughness = new MageInt(5);
this.addAbility(DefenderAbility.getInstance());
}
public TidalWaveWallToken(final TidalWaveWallToken token) {
super(token);
}
public TidalWaveWallToken copy() {
return new TidalWaveWallToken(this);
}
}