alway put $ after a choice, mana choice is not shown in UI but necessary if there is another choice after the mana choice as mapping of $ to chosen is by order

master
melvin 2013-05-18 12:34:33 +08:00
parent 6e3a774c83
commit 734380394f
4 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@
new MagicPayManaCostChoice(MagicManaCost.create("{G}"))
),
this,
"You may\$ pay {G}. If you don't, sacrifice SN."
"You may\$ pay {G}\$. If you don't, sacrifice SN."
):
MagicEvent.NONE;
}

View File

@ -9,7 +9,7 @@
new MagicPayManaCostChoice(MagicManaCost.create("{1}"))
),
this,
"You may\$ pay {1}. If you don't, sacrifice SN."
"You may\$ pay {1}\$. If you don't, sacrifice SN."
);
}
@Override

View File

@ -9,7 +9,7 @@
new MagicPayManaCostChoice(MagicManaCost.create("{2}"))
),
this,
"You may\$ pay {2}. If you do, draw a card."
"You may\$ pay {2}\$. If you do, draw a card."
);
}

View File

@ -26,7 +26,7 @@ public class Mirrorworks {
),
otherPermanent,
this,
"You may$ pay {2}. If you do, put a token that's a " +
"You may$ pay {2}$. If you do, put a token that's a " +
"copy of " + otherPermanent + " onto the battlefield."
):
MagicEvent.NONE;