[NEC] Implemented Chishiro, the Shattered Blade

This commit is contained in:
Evan Kranzler 2022-01-30 14:14:40 -05:00
parent 0909ecf6c4
commit c77459b7a0
3 changed files with 96 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 SpiritRedToken extends TokenImpl {
public SpiritRedToken() {
super("Spirit token", "2/2 red Spirit creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.SPIRIT);
color.setRed(true);
power = new MageInt(2);
toughness = new MageInt(2);
}
public SpiritRedToken(final SpiritRedToken token) {
super(token);
}
public SpiritRedToken copy() {
return new SpiritRedToken(this);
}
}