forked from External/mage
[ALA] various text fixes
This commit is contained in:
parent
670c2a5615
commit
edaaac53d9
33 changed files with 185 additions and 248 deletions
|
|
@ -118,11 +118,12 @@ public class CreateTokenEffect extends OneShotEffect {
|
|||
}
|
||||
StringBuilder sb = new StringBuilder("create ");
|
||||
if (amount.toString().equals("1")) {
|
||||
sb.append("a ");
|
||||
if (tapped && !attacking) {
|
||||
sb.append("tapped ");
|
||||
sb.append("a tapped ");
|
||||
sb.append(token.getDescription());
|
||||
} else {
|
||||
sb.append(CardUtil.addArticle(token.getDescription()));
|
||||
}
|
||||
sb.append(token.getDescription());
|
||||
} else {
|
||||
sb.append(CardUtil.numberToText(amount.toString())).append(' ');
|
||||
if (tapped && !attacking) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue