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

32 lines
774 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 HauntedAngelToken extends TokenImpl {
public HauntedAngelToken() {
super("Angel", "3/3 black Angel creature token with flying");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.ANGEL);
power = new MageInt(3);
toughness = new MageInt(3);
this.addAbility(FlyingAbility.getInstance());
}
public HauntedAngelToken(final HauntedAngelToken token) {
super(token);
}
public HauntedAngelToken copy() {
return new HauntedAngelToken(this);
}
}