forked from External/mage
Fix some BBD card text
This commit is contained in:
parent
2662fa7799
commit
cd6a847db7
19 changed files with 24 additions and 24 deletions
|
|
@ -28,10 +28,10 @@ public class DrawDiscardTargetEffect extends OneShotEffect {
|
|||
this.cardsToDiscard = cardsToDiscard;
|
||||
staticText = new StringBuilder("Target player draws ")
|
||||
.append(cardsToDraw == 1?"a": CardUtil.numberToText(cardsToDraw))
|
||||
.append(" card").append(cardsToDraw == 1?" ": "s")
|
||||
.append(" card").append(cardsToDraw == 1?"": "s")
|
||||
.append(", then discards ")
|
||||
.append(cardsToDiscard == 1?"a": CardUtil.numberToText(cardsToDiscard))
|
||||
.append(" card").append(cardsToDiscard == 1?" ": "s").toString();
|
||||
.append(" card").append(cardsToDiscard == 1?"": "s").toString();
|
||||
}
|
||||
|
||||
public DrawDiscardTargetEffect(final DrawDiscardTargetEffect effect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue