forked from External/mage
Implemented Ominous Seas
This commit is contained in:
parent
f5572c8fc1
commit
71b69b9308
4 changed files with 84 additions and 0 deletions
|
|
@ -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