forked from External/mage
* ContinuousRuleModifyingEffectImpl * OneShotEffect * ContinuousEffectImpl * fix CRLF * *EffectImpl * *Effect * DoIfCostPaid * cleanup token copy constructors -> private * fix build error from misspelled class name
32 lines
769 B
Java
32 lines
769 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class Angel33Token extends TokenImpl {
|
|
|
|
public Angel33Token() {
|
|
super("Angel Token", "3/3 white Angel creature token with flying");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setWhite(true);
|
|
subtype.add(SubType.ANGEL);
|
|
power = new MageInt(3);
|
|
toughness = new MageInt(3);
|
|
|
|
// Flying
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
}
|
|
|
|
private Angel33Token(final Angel33Token token) {
|
|
super(token);
|
|
}
|
|
|
|
public Angel33Token copy() {
|
|
return new Angel33Token(this);
|
|
}
|
|
}
|