[ZNR] Implemented Nahiri, Heir of the Ancients

This commit is contained in:
Evan Kranzler 2020-08-27 12:07:43 -04:00
parent 278e316e27
commit f4da18df89
4 changed files with 192 additions and 2 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author TheElk801
*/
public final class KorWarriorToken extends TokenImpl {
public KorWarriorToken() {
super("Kor Warrior", "1/1 white Kor Warrior creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.KOR);
subtype.add(SubType.WARRIOR);
color.setWhite(true);
power = new MageInt(1);
toughness = new MageInt(1);
}
public KorWarriorToken(final KorWarriorToken token) {
super(token);
}
public KorWarriorToken copy() {
return new KorWarriorToken(this);
}
}