mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 04:42:07 -08:00
Implement [REX] Compy Swarm (#12101)
This commit is contained in:
parent
444a15df5d
commit
51b1ab4cb6
3 changed files with 47 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue