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
32 lines
865 B
Java
32 lines
865 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public final class CentaurEnchantmentCreatureToken extends TokenImpl {
|
|
|
|
public CentaurEnchantmentCreatureToken() {
|
|
super("Centaur Token", "3/3 green Centaur enchantment creature token");
|
|
cardType.add(CardType.ENCHANTMENT);
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
subtype.add(SubType.CENTAUR);
|
|
power = new MageInt(3);
|
|
toughness = new MageInt(3);
|
|
this.setOriginalExpansionSetCode("BNG");
|
|
}
|
|
|
|
public CentaurEnchantmentCreatureToken(final CentaurEnchantmentCreatureToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public CentaurEnchantmentCreatureToken copy() {
|
|
return new CentaurEnchantmentCreatureToken(this);
|
|
}
|
|
}
|