forked from External/mage
* ContinuousRuleModifyingEffectImpl * OneShotEffect * ContinuousEffectImpl * fix CRLF * *EffectImpl * *Effect * DoIfCostPaid * cleanup token copy constructors -> private * fix build error from misspelled class name
31 lines
749 B
Java
31 lines
749 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
* @author spjspj
|
|
*/
|
|
public final class BlueBirdToken extends TokenImpl {
|
|
|
|
public BlueBirdToken() {
|
|
super("Bird Token", "1/1 blue Bird creature token with flying");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlue(true);
|
|
subtype.add(SubType.BIRD);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
}
|
|
|
|
private BlueBirdToken(final BlueBirdToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public BlueBirdToken copy() {
|
|
return new BlueBirdToken(this);
|
|
}
|
|
}
|