mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[NEO] Implemented Kura, the Boundless Sky
This commit is contained in:
parent
8d2db4815d
commit
5940ff7cfd
3 changed files with 117 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue