mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Implemented Ominous Seas
This commit is contained in:
parent
f5572c8fc1
commit
71b69b9308
4 changed files with 84 additions and 0 deletions
|
|
@ -53,6 +53,7 @@ public enum CounterType {
|
|||
FIRST_STRIKE("first strike"),
|
||||
FLOOD("flood"),
|
||||
FLYING("flying"),
|
||||
FORESHADOW("foreshadow"),
|
||||
FUNK("funk"),
|
||||
FURY("fury"),
|
||||
FUNGUS("fungus"),
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue