Implement [REX] Compy Swarm (#12101)

This commit is contained in:
jimga150 2024-04-10 23:43:37 -04:00 committed by GitHub
parent 444a15df5d
commit 51b1ab4cb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 47 additions and 1 deletions

View file

@ -27,7 +27,8 @@ public class CreateTokenCopySourceEffect extends OneShotEffect {
super(Outcome.PutCreatureInPlay);
this.number = copies;
this.tapped = tapped;
staticText = "create a " + (tapped ? "tapped " : "") + "token that's a copy of {this}";
staticText = "create " + (copies > 1 ? copies : "a") + " " + (tapped ? "tapped " : "")
+ (copies > 1 ? "tokens that are" : "token that's") + " a copy of {this}";
}
protected CreateTokenCopySourceEffect(final CreateTokenCopySourceEffect effect) {