foul-magics/Mage/src/main/java/mage/game/permanent/token/WaspToken.java
2018-06-02 17:59:49 +02:00

32 lines
767 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
/**
*
* @author spjspj
*/
public final class WaspToken extends TokenImpl {
public WaspToken() {
super("Wasp", "1/1 colorless Insect artifact creature token with flying named Wasp");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
this.subtype.add(SubType.INSECT);
power = new MageInt(1);
toughness = new MageInt(1);
this.addAbility(FlyingAbility.getInstance());
}
public WaspToken(final WaspToken token) {
super(token);
}
public WaspToken copy() {
return new WaspToken(this);
}
}