forked from External/mage
[ZNR] various text fixes
This commit is contained in:
parent
665528b251
commit
6a3240fad3
12 changed files with 38 additions and 21 deletions
|
|
@ -23,7 +23,7 @@ public class RemoveCountersSourceCost extends CostImpl {
|
|||
public RemoveCountersSourceCost(Counter counter) {
|
||||
this.amount = counter.getCount();
|
||||
this.name = counter.getName();
|
||||
this.text = new StringBuilder("Remove ").append((amount == 1 ? "a" : CardUtil.numberToText(amount)))
|
||||
this.text = new StringBuilder("remove ").append((amount == 1 ? "a" : CardUtil.numberToText(amount)))
|
||||
.append(' ').append(name).append(" counter").append((amount != 1 ? "s" : ""))
|
||||
.append(" from {this}").toString();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue