Implemented Kiora Bests the Sea God

This commit is contained in:
Evan Kranzler 2020-01-07 18:38:33 -05:00
parent a205f2bf10
commit a9739f12f1
3 changed files with 137 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.ObjectColor;
import mage.abilities.keyword.HexproofAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class KrakenHexproofToken extends TokenImpl {
public KrakenHexproofToken() {
super("Kraken", "8/8 blue Kraken creature token with hexproof");
this.cardType.add(CardType.CREATURE);
this.subtype.add(SubType.KRAKEN);
this.color = ObjectColor.BLUE;
this.power = new MageInt(8);
this.toughness = new MageInt(8);
this.addAbility(HexproofAbility.getInstance());
}
private KrakenHexproofToken(final KrakenHexproofToken token) {
super(token);
}
public KrakenHexproofToken copy() {
return new KrakenHexproofToken(this);
}
}