[MOM] Implement Invasion of Segovia / Caetus, Sea Tyrant of Segovia

This commit is contained in:
theelk801 2023-04-15 17:52:42 -04:00
parent e7f6173cc2
commit 453d734e30
4 changed files with 137 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.TrampleAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class Kraken11Token extends TokenImpl {
public Kraken11Token() {
super("Kraken Token", "1/1 blue Kraken creature token with trample");
this.cardType.add(CardType.CREATURE);
this.subtype.add(SubType.KRAKEN);
this.color.setBlue(true);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
this.addAbility(TrampleAbility.getInstance());
}
private Kraken11Token(final Kraken11Token token) {
super(token);
}
public Kraken11Token copy() {
return new Kraken11Token(this);
}
}