package mage.game.permanent.token; import mage.constants.CardType; import mage.constants.SubType; import mage.MageInt; /** * * @author spjspj */ public final class WalkerOfTheGroveToken extends TokenImpl { public WalkerOfTheGroveToken() { super("Elemental", "4/4 green Elemental creature token"); cardType.add(CardType.CREATURE); this.subtype.add(SubType.ELEMENTAL); this.color.setGreen(true); power = new MageInt(4); toughness = new MageInt(4); } public WalkerOfTheGroveToken(final WalkerOfTheGroveToken token) { super(token); } public WalkerOfTheGroveToken copy() { return new WalkerOfTheGroveToken(this); } }