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
37 lines
869 B
Java
37 lines
869 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.TrampleAbility;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class PenumbraWurmToken extends TokenImpl {
|
|
|
|
public PenumbraWurmToken() {
|
|
super("Wurm Token", "6/6 black Wurm creature token with trample");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlack(true);
|
|
subtype.add(SubType.WURM);
|
|
power = new MageInt(6);
|
|
toughness = new MageInt(6);
|
|
|
|
this.addAbility(TrampleAbility.getInstance());
|
|
|
|
availableImageSetCodes.addAll(Arrays.asList("UMA"));
|
|
}
|
|
|
|
public PenumbraWurmToken(final PenumbraWurmToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public PenumbraWurmToken copy() {
|
|
return new PenumbraWurmToken(this);
|
|
}
|
|
}
|