Implemented Security Detail

This commit is contained in:
Evan Kranzler 2017-09-24 10:35:12 -04:00
parent 428d821d09
commit f8faae4bb3
3 changed files with 79 additions and 3 deletions

View file

@ -72,10 +72,16 @@ public class CreatureCountCondition implements Condition {
sb.append(" are on the battlefield");
return sb.toString();
}
sb.append(" control exactly ");
sb.append(creatureCount);
sb.append(' ');
sb.append(" control");
if (creatureCount == 0) {
sb.append(" no ");
} else {
sb.append(" exactly ");
sb.append(creatureCount);
sb.append(' ');
}
sb.append(filter.getMessage());
sb.append(creatureCount != 1 ? "s" : "");
return sb.toString();
}