mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented Kiora Bests the Sea God
This commit is contained in:
parent
a205f2bf10
commit
a9739f12f1
3 changed files with 137 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue