mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Implemented Emmara, Soul of the Accord
This commit is contained in:
parent
49cdd3f7d5
commit
e9fef59495
3 changed files with 76 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue