forked from External/mage
Remove more duplicate tokens and rename some tokens to more generic names
This commit is contained in:
parent
6b0115157b
commit
77433d7ee6
20 changed files with 64 additions and 229 deletions
|
|
@ -0,0 +1,30 @@
|
|||
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 WhiteBlueBirdToken extends TokenImpl {
|
||||
|
||||
public WhiteBlueBirdToken() {
|
||||
super("Bird Token", "1/1 white and blue Bird creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.BIRD);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
public WhiteBlueBirdToken(final WhiteBlueBirdToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public WhiteBlueBirdToken copy() {
|
||||
return new WhiteBlueBirdToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue