forked from External/mage
33 lines
829 B
Java
33 lines
829 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
|
|
/**
|
|
*
|
|
* @author TheElk801
|
|
*/
|
|
public final class BirdIllusionToken extends TokenImpl {
|
|
|
|
public BirdIllusionToken() {
|
|
super("Bird Illusion", "1/1 blue Bird Illusion creature token with flying");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlue(true);
|
|
subtype.add(SubType.BIRD);
|
|
subtype.add(SubType.ILLUSION);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
}
|
|
|
|
public BirdIllusionToken(final BirdIllusionToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public BirdIllusionToken copy() {
|
|
return new BirdIllusionToken(this);
|
|
}
|
|
}
|