[ZNR] Implemented Emeria's Call / Emeria, Shattered Skyclave

This commit is contained in:
Evan Kranzler 2020-09-08 15:35:52 -04:00
parent 615fba5a72
commit 661119e462
4 changed files with 121 additions and 0 deletions

View file

@ -0,0 +1,28 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
public final class AngelWarriorToken extends TokenImpl {
public AngelWarriorToken() {
super("Angel Warrior", "4/4 white Angel Warrior creature token with flying");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.ANGEL);
subtype.add(SubType.WARRIOR);
power = new MageInt(4);
toughness = new MageInt(4);
addAbility(FlyingAbility.getInstance());
}
public AngelWarriorToken(final AngelWarriorToken token) {
super(token);
}
public AngelWarriorToken copy() {
return new AngelWarriorToken(this);
}
}