[FDN] Implement Kiora, the Rising Tide

This commit is contained in:
ciaccona007 2024-11-04 09:01:24 -05:00
parent d8f8905894
commit a387c5ed67
5 changed files with 88 additions and 0 deletions

View file

@ -0,0 +1,27 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
public final class ScionOfTheDeepToken extends TokenImpl {
public ScionOfTheDeepToken() {
super("Scion of the Deep", "Scion of the Deep, a legendary 8/8 blue Octopus creature token");
supertype.add(SuperType.LEGENDARY);
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.OCTOPUS);
power = new MageInt(8);
toughness = new MageInt(8);
}
private ScionOfTheDeepToken(final ScionOfTheDeepToken token) {
super(token);
}
public ScionOfTheDeepToken copy() {
return new ScionOfTheDeepToken(this);
}
}