forked from External/mage
33 lines
805 B
Java
33 lines
805 B
Java
|
|
|
|
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 ElementalCatToken extends TokenImpl {
|
|
|
|
public ElementalCatToken() {
|
|
super("Elemental Cat", "1/1 red Elemental Cat creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setRed(true);
|
|
subtype.add(SubType.ELEMENTAL);
|
|
subtype.add(SubType.CAT);
|
|
addAbility(HasteAbility.getInstance());
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
}
|
|
|
|
public ElementalCatToken(final ElementalCatToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public ElementalCatToken copy() {
|
|
return new ElementalCatToken(this);
|
|
}
|
|
}
|