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
1,005 B
Java
37 lines
1,005 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class OonaQueenFaerieRogueToken extends TokenImpl {
|
|
|
|
public OonaQueenFaerieRogueToken() {
|
|
super("Faerie Rogue Token", "1/1 blue and black Faerie Rogue creature token with flying");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlue(true);
|
|
color.setBlack(true);
|
|
subtype.add(SubType.FAERIE);
|
|
subtype.add(SubType.ROGUE);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
|
|
availableImageSetCodes = Arrays.asList("MMA", "SHM");
|
|
}
|
|
public OonaQueenFaerieRogueToken(final OonaQueenFaerieRogueToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public OonaQueenFaerieRogueToken copy() {
|
|
return new OonaQueenFaerieRogueToken(this);
|
|
}
|
|
}
|