mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
more fixes with dualmana parsing
This commit is contained in:
parent
48142926dd
commit
494f405d74
2 changed files with 8 additions and 8 deletions
|
@ -42,7 +42,7 @@ import mage.cards.CardImpl;
|
||||||
public class MarisisTwinclaws extends CardImpl<MarisisTwinclaws> {
|
public class MarisisTwinclaws extends CardImpl<MarisisTwinclaws> {
|
||||||
|
|
||||||
public MarisisTwinclaws (UUID ownerId) {
|
public MarisisTwinclaws (UUID ownerId) {
|
||||||
super(ownerId, 140, "Marisi's Twinclaws", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{2}R/W{G}");
|
super(ownerId, 140, "Marisi's Twinclaws", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{2}{R/W}{G}");
|
||||||
this.expansionSetCode = "ARB";
|
this.expansionSetCode = "ARB";
|
||||||
this.subtype.add("Cat");
|
this.subtype.add("Cat");
|
||||||
this.subtype.add("Warrior");
|
this.subtype.add("Warrior");
|
||||||
|
|
|
@ -244,13 +244,13 @@ $mana{'Green'} = '{G}';
|
||||||
$mana{'Red'} = '{R}';
|
$mana{'Red'} = '{R}';
|
||||||
$mana{'White'} = '{W}';
|
$mana{'White'} = '{W}';
|
||||||
$mana{'Variable Colorless'} = '{X}';
|
$mana{'Variable Colorless'} = '{X}';
|
||||||
$mana{'White or Black'} = 'W/B';
|
$mana{'White or Black'} = '{W/B}';
|
||||||
$mana{'Green or White'} = 'G/W';
|
$mana{'Green or White'} = '{G/W}';
|
||||||
$mana{'Black or Green'} = 'B/G';
|
$mana{'Black or Green'} = '{B/G}';
|
||||||
$mana{'Black or Red'} = 'B/R';
|
$mana{'Black or Red'} = '{B/R}';
|
||||||
$mana{'Blue or Red'} = 'U/R';
|
$mana{'Blue or Red'} = '{U/R}';
|
||||||
$mana{'Red or Green'} = 'R/G';
|
$mana{'Red or Green'} = '{R/G}';
|
||||||
$mana{'Red or White'} = 'R/W';
|
$mana{'Red or White'} = '{R/W}';
|
||||||
|
|
||||||
my %manatocolor;
|
my %manatocolor;
|
||||||
$manatocolor{'Black'} = " this.color.setBlack(true);";
|
$manatocolor{'Black'} = " this.color.setBlack(true);";
|
||||||
|
|
Loading…
Reference in a new issue