[C16] Added Primeval Protector, Crystalline Crawler, and Breya, Etherium Sculptor.

This commit is contained in:
fireshoes 2016-10-25 15:55:46 -05:00
parent 5edec4a92c
commit f0206537c1
9 changed files with 343 additions and 13 deletions

View file

@ -109,7 +109,7 @@ public class CreateTokenEffect extends OneShotEffect {
}
private void setText() {
StringBuilder sb = new StringBuilder("put ");
StringBuilder sb = new StringBuilder("create ");
if (amount.toString().equals("1")) {
sb.append("a ").append(token.getDescription());
} else {
@ -118,7 +118,6 @@ public class CreateTokenEffect extends OneShotEffect {
sb.append("s ");
}
}
sb.append(" onto the battlefield");
if (tapped) {
sb.append(" tapped");
}