forked from External/mage
* updated Riptide Replicator and Volrath's Laboratory * refactored token names * some test fixes * more test fixes * even more test fixes * the final test fixes * fixed a few missed tokens * merge fix * fixed a test failure * fixed test failure * updated ignored verify test * fixed token images not appearing * updated tests
34 lines
950 B
Java
34 lines
950 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.HasteAbility;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class SatyrNyxSmithElementalToken extends TokenImpl {
|
|
|
|
public SatyrNyxSmithElementalToken() {
|
|
super("Elemental Token", "3/1 red Elemental enchantment creature token with haste");
|
|
cardType.add(CardType.ENCHANTMENT);
|
|
cardType.add(CardType.CREATURE);
|
|
color.setRed(true);
|
|
subtype.add(SubType.ELEMENTAL);
|
|
power = new MageInt(3);
|
|
toughness = new MageInt(1);
|
|
this.addAbility(HasteAbility.getInstance());
|
|
this.setOriginalExpansionSetCode("BNG");
|
|
}
|
|
|
|
public SatyrNyxSmithElementalToken(final SatyrNyxSmithElementalToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public SatyrNyxSmithElementalToken copy() {
|
|
return new SatyrNyxSmithElementalToken(this);
|
|
}
|
|
}
|