mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
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;
|
||||
|
||||
/**
|
||||
* @author spjspj
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class FaerieBlueBlackToken extends TokenImpl {
|
||||
|
||||
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);
|
||||
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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue