forked from External/mage
35 lines
888 B
Java
35 lines
888 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author LoneFox
|
|
*/
|
|
public final class PegasusToken extends TokenImpl {
|
|
|
|
public PegasusToken() {
|
|
super("Pegasus", "1/1 white Pegasus creature token with flying");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setWhite(true);
|
|
subtype.add(SubType.PEGASUS);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
addAbility(FlyingAbility.getInstance());
|
|
|
|
availableImageSetCodes = Arrays.asList("C14", "C19", "CMD", "EXO", "GPT", "MIR", "TMP", "TSP", "THB", "KHC");
|
|
}
|
|
|
|
public PegasusToken(final PegasusToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public PegasusToken copy() {
|
|
return new PegasusToken(this);
|
|
}
|
|
}
|