mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +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;
|
return staticText;
|
||||||
}
|
}
|
||||||
StringBuilder sb = new StringBuilder();
|
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) {
|
if (tapped && !attacking) {
|
||||||
sb.append("tapped ");
|
sb.append("tapped ");
|
||||||
} else if (!tapped && attacking) {
|
} else if (!tapped && attacking) {
|
||||||
|
|
Loading…
Reference in a new issue