forked from External/mage
[BFZ] Some fixes to tooltip texts. Some minor bugs fixed.
This commit is contained in:
parent
1708a49d37
commit
f18b29bec9
26 changed files with 104 additions and 384 deletions
|
|
@ -57,10 +57,12 @@ public class DrawDiscardControllerEffect extends OneShotEffect {
|
|||
this.cardsToDraw = cardsToDraw;
|
||||
this.cardsToDiscard = cardsToDiscard;
|
||||
this.optional = optional;
|
||||
staticText = new StringBuilder("Draw ")
|
||||
staticText = new StringBuilder(optional ? "you may " : "")
|
||||
.append("draw ")
|
||||
.append(cardsToDraw == 1 ? "a" : CardUtil.numberToText(cardsToDraw))
|
||||
.append(" card").append(cardsToDraw == 1 ? "" : "s")
|
||||
.append(", then discard ")
|
||||
.append(optional ? ", if you do" : ", then")
|
||||
.append(" discard ")
|
||||
.append(cardsToDiscard == 1 ? "a" : CardUtil.numberToText(cardsToDiscard))
|
||||
.append(" card").append(cardsToDiscard == 1 ? "" : "s").toString();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue