[NEO] Implemented Kura, the Boundless Sky

This commit is contained in:
Evan Kranzler 2022-02-05 20:21:11 -05:00
parent 8d2db4815d
commit 5940ff7cfd
3 changed files with 117 additions and 0 deletions

View file

@ -0,0 +1,28 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class SpiritGreenXToken extends TokenImpl {
public SpiritGreenXToken(int xValue) {
super("Spirit token", "X/X green Spirit creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.SPIRIT);
color.setGreen(true);
power = new MageInt(xValue);
toughness = new MageInt(xValue);
}
public SpiritGreenXToken(final SpiritGreenXToken token) {
super(token);
}
public SpiritGreenXToken copy() {
return new SpiritGreenXToken(this);
}
}