[ECL] Implement Tend the Sprigs

This commit is contained in:
theelk801 2026-01-07 10:11:45 -05:00
parent dcaaafd9d1
commit 0d582aa764
3 changed files with 98 additions and 0 deletions

View file

@ -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);
}
}