foul-magics/Mage/src/main/java/mage/game/permanent/token/TidalWaveWallToken.java
2022-06-06 01:33:08 +01:00

36 lines
876 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.DefenderAbility;
import java.util.Arrays;
/**
*
* @author spjspj
*/
public final class TidalWaveWallToken extends TokenImpl {
public TidalWaveWallToken() {
super("Wall Token", "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());
availableImageSetCodes = Arrays.asList("EMA", "DDT");
}
public TidalWaveWallToken(final TidalWaveWallToken token) {
super(token);
}
public TidalWaveWallToken copy() {
return new TidalWaveWallToken(this);
}
}