Implemented Emmara, Soul of the Accord

This commit is contained in:
Evan Kranzler 2018-09-02 21:56:34 -04:00
parent 49cdd3f7d5
commit e9fef59495
3 changed files with 76 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.LifelinkAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author TheElk801
*/
public final class SoldierLifelinkToken extends TokenImpl {
public SoldierLifelinkToken() {
super("Soldier", "1/1 white Soldier creature token with lifelink");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.SOLDIER);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(LifelinkAbility.getInstance());
}
public SoldierLifelinkToken(final SoldierLifelinkToken token) {
super(token);
}
public SoldierLifelinkToken copy() {
return new SoldierLifelinkToken(this);
}
}