[WHO] Implement The Sea Devils (#11310)

This commit is contained in:
Susucre 2023-10-17 11:59:08 +02:00 committed by GitHub
parent 03c2b078cb
commit 36ae1a641e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 212 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.IslandwalkAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class AlienSalamanderToken extends TokenImpl {
public AlienSalamanderToken() {
super("Alien Salamander Token", "2/2 green Alien Salamander creature token with islandwalk");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.ALIEN);
subtype.add(SubType.SALAMANDER);
power = new MageInt(2);
toughness = new MageInt(2);
addAbility(new IslandwalkAbility());
}
protected AlienSalamanderToken(final AlienSalamanderToken token) {
super(token);
}
public AlienSalamanderToken copy() {
return new AlienSalamanderToken(this);
}
}