mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
[ZNR] Implemented Emeria's Call / Emeria, Shattered Skyclave
This commit is contained in:
parent
615fba5a72
commit
661119e462
4 changed files with 121 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue