forked from External/mage
* Added support for and assigned UMA token images * Added Scryfall token download links for MMA * Added Scryfall token download links for SHM * Fixed last commit and Oona token names * Added support for and assigned NEO token images * Added support for and assigned NEC token images * Added support for and assigned SLD token images * Added support for and assigned 2XM token images * Fixed Tuktuk and some naming inconsistencies * Fixed WalkerOfTheGroveToken's available image set codes * Fixed WalkerOfTheGroveToken's available image set codes * Fixed tokens with same names not displaying correctly
35 lines
881 B
Java
35 lines
881 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.ReachAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author fireshoes
|
|
*/
|
|
public final class SpiderToken extends TokenImpl {
|
|
|
|
public SpiderToken() {
|
|
super("Spider Token", "1/2 green Spider creature token with reach");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
subtype.add(SubType.SPIDER);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(2);
|
|
|
|
this.addAbility(ReachAbility.getInstance());
|
|
|
|
availableImageSetCodes.addAll(Arrays.asList("C15", "EMN", "ISD", "SHM", "MH1", "THB", "MID", "UMA"));
|
|
}
|
|
|
|
public SpiderToken(final SpiderToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public SpiderToken copy() {
|
|
return new SpiderToken(this);
|
|
}
|
|
}
|