Fix some BBD card text

This commit is contained in:
Plopman 2018-06-06 23:23:55 +02:00
parent 2662fa7799
commit cd6a847db7
19 changed files with 24 additions and 24 deletions

View file

@ -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) {