forked from External/mage
* Fixed knight token images from the DOM set not displaying * Fixed the name reference of RNA's thopter token * Fixed misspelling regarding Tibalt, Cosmic Impostor's emblem token causing it not to show in game * Updated Faerie Dragon token to be present in game * Removed redundant code regarding KLD constructs and improved thematic consistency * Added Scryfall token download links for DTK * Added support for and assigned SNC token images
35 lines
830 B
Java
35 lines
830 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.HasteAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class CatHasteToken extends TokenImpl {
|
|
|
|
public CatHasteToken() {
|
|
super("Cat Token", "2/2 green Cat creature token with haste");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
subtype.add(SubType.CAT);
|
|
power = new MageInt(2);
|
|
toughness = new MageInt(2);
|
|
|
|
this.addAbility(HasteAbility.getInstance());
|
|
|
|
availableImageSetCodes = Arrays.asList("SNC");
|
|
}
|
|
|
|
private CatHasteToken(final CatHasteToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public CatHasteToken copy() {
|
|
return new CatHasteToken(this);
|
|
}
|
|
}
|