mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Fixed effect text for numbers > 1 (e.g. Daretti, Ingenious Iconlast).
This commit is contained in:
parent
f0bbb8db7b
commit
bd0e288087
1 changed files with 7 additions and 1 deletions
|
@ -232,7 +232,13 @@ public class PutTokenOntoBattlefieldCopyTargetEffect extends OneShotEffect {
|
|||
return staticText;
|
||||
}
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("Put a token onto the battlefield ");
|
||||
sb.append("Put ");
|
||||
if (number == 1) {
|
||||
sb.append("a token");
|
||||
} else {
|
||||
sb.append(CardUtil.numberToText(number)).append(" tokens");
|
||||
}
|
||||
sb.append(" onto the battlefield ");
|
||||
if (tapped && !attacking) {
|
||||
sb.append("tapped ");
|
||||
} else if (!tapped && attacking) {
|
||||
|
|
Loading…
Reference in a new issue