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

34 lines
844 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.DefenderAbility;
import mage.abilities.keyword.FlyingAbility;
/**
*
* @author spjspj
*/
public final class WeirdToken extends TokenImpl {
public WeirdToken() {
super("Weird", "3/3 blue Weird create token with defender and flying");
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.WEIRD);
power = new MageInt(3);
toughness = new MageInt(3);
this.addAbility(DefenderAbility.getInstance());
this.addAbility(FlyingAbility.getInstance());
}
public WeirdToken(final WeirdToken token) {
super(token);
}
public WeirdToken copy() {
return new WeirdToken(this);
}
}