mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 05:52:06 -08:00
[ZNR] Implemented Nahiri, Heir of the Ancients
This commit is contained in:
parent
278e316e27
commit
f4da18df89
4 changed files with 192 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue