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
33 lines
981 B
Java
33 lines
981 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.abilities.keyword.VigilanceAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
public final class AngelVigilanceToken extends TokenImpl {
|
|
|
|
public AngelVigilanceToken() {
|
|
super("Angel Token", "4/4 white Angel creature token with flying and vigilance");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setWhite(true);
|
|
subtype.add(SubType.ANGEL);
|
|
power = new MageInt(4);
|
|
toughness = new MageInt(4);
|
|
addAbility(FlyingAbility.getInstance());
|
|
addAbility(VigilanceAbility.getInstance());
|
|
|
|
availableImageSetCodes = Arrays.asList("NEC", "MH1", "WAR", "GRN", "M19");
|
|
}
|
|
|
|
public AngelVigilanceToken(final AngelVigilanceToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public AngelVigilanceToken copy() {
|
|
return new AngelVigilanceToken(this);
|
|
}
|
|
}
|