forked from External/mage
fix Bitterbloom Bearer token
This commit is contained in:
parent
4f8cc385fd
commit
d744b347f2
1 changed files with 2 additions and 3 deletions
|
|
@ -6,17 +6,16 @@ import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author spjspj
|
* @author TheElk801
|
||||||
*/
|
*/
|
||||||
public final class FaerieBlueBlackToken extends TokenImpl {
|
public final class FaerieBlueBlackToken extends TokenImpl {
|
||||||
|
|
||||||
public FaerieBlueBlackToken() {
|
public FaerieBlueBlackToken() {
|
||||||
super("Faerie Rogue Token", "1/1 blue and black Faerie Rogue creature token with flying");
|
super("Faerie Token", "1/1 blue and black Faerie creature token with flying");
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
color.setBlue(true);
|
color.setBlue(true);
|
||||||
color.setBlack(true);
|
color.setBlack(true);
|
||||||
subtype.add(SubType.FAERIE);
|
subtype.add(SubType.FAERIE);
|
||||||
subtype.add(SubType.ROGUE);
|
|
||||||
power = new MageInt(1);
|
power = new MageInt(1);
|
||||||
toughness = new MageInt(1);
|
toughness = new MageInt(1);
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue