mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
[ECL] Implement Bitterbloom Bearer
This commit is contained in:
parent
d7dec3baa5
commit
454c7e0116
3 changed files with 86 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
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 FaerieBlueBlackToken extends TokenImpl {
|
||||
|
||||
public FaerieBlueBlackToken() {
|
||||
super("Faerie Rogue Token", "1/1 blue and black Faerie Rogue creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.FAERIE);
|
||||
subtype.add(SubType.ROGUE);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
private FaerieBlueBlackToken(final FaerieBlueBlackToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public FaerieBlueBlackToken copy() {
|
||||
return new FaerieBlueBlackToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue