mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
[ECL] Implement Tend the Sprigs
This commit is contained in:
parent
dcaaafd9d1
commit
0d582aa764
3 changed files with 98 additions and 0 deletions
|
|
@ -0,0 +1,31 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.ReachAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TreefolkReachToken extends TokenImpl {
|
||||
|
||||
public TreefolkReachToken() {
|
||||
super("Treefolk Token", "3/4 green Treefolk creature token with reach");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.TREEFOLK);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(4);
|
||||
|
||||
addAbility(ReachAbility.getInstance());
|
||||
}
|
||||
|
||||
private TreefolkReachToken(final TreefolkReachToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public TreefolkReachToken copy() {
|
||||
return new TreefolkReachToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue