Implemented Ominous Seas

This commit is contained in:
Evan Kranzler 2020-04-08 08:31:48 -04:00
parent f5572c8fc1
commit 71b69b9308
4 changed files with 84 additions and 0 deletions

View file

@ -53,6 +53,7 @@ public enum CounterType {
FIRST_STRIKE("first strike"),
FLOOD("flood"),
FLYING("flying"),
FORESHADOW("foreshadow"),
FUNK("funk"),
FURY("fury"),
FUNGUS("fungus"),

View file

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