package mage.game.permanent.token; import mage.MageInt; import mage.abilities.keyword.HasteAbility; import mage.constants.CardType; import mage.constants.SubType; /** * * @author spjspj */ public final class ElementalMasteryElementalToken extends TokenImpl { public ElementalMasteryElementalToken() { super("Elemental", "1/1 red Elemental creature token with haste"); cardType.add(CardType.CREATURE); subtype.add(SubType.ELEMENTAL); color.setRed(true); power = new MageInt(1); toughness = new MageInt(1); addAbility(HasteAbility.getInstance()); } public ElementalMasteryElementalToken(final ElementalMasteryElementalToken token) { super(token); } public ElementalMasteryElementalToken copy() { return new ElementalMasteryElementalToken(this); } }