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

31 lines
782 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 AnotherSpiritToken extends TokenImpl {
public AnotherSpiritToken() {
super("Spirit", "3/3 white Spirit creature token with flying");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.SPIRIT);
power = new MageInt(3);
toughness = new MageInt(3);
this.addAbility(FlyingAbility.getInstance());
}
public AnotherSpiritToken(final AnotherSpiritToken token) {
super(token);
}
public AnotherSpiritToken copy() {
return new AnotherSpiritToken(this);
}
}