mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
Implemented Security Detail
This commit is contained in:
parent
428d821d09
commit
f8faae4bb3
3 changed files with 79 additions and 3 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue