mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[NEO] fixed Replication Specialist text generation (closes #8643)
This commit is contained in:
parent
50a78526dc
commit
8df3fdd6cb
1 changed files with 6 additions and 2 deletions
|
@ -42,8 +42,12 @@ public final class ReplicationSpecialist extends CardImpl {
|
|||
|
||||
// Whenever a nontoken artifact enters the battlefield under your control, you may pay {1}{U}. If you do, create a token that's a copy of that artifact.
|
||||
this.addAbility(new EntersBattlefieldControlledTriggeredAbility(
|
||||
Zone.BATTLEFIELD, new DoIfCostPaid(new CreateTokenCopyTargetEffect(), new ManaCostsImpl<>("{1}{U}")),
|
||||
filter, false, SetTargetPointer.PERMANENT, null
|
||||
Zone.BATTLEFIELD,
|
||||
new DoIfCostPaid(
|
||||
new CreateTokenCopyTargetEffect()
|
||||
.setText("create a token that's a copy of that artifact"),
|
||||
new ManaCostsImpl<>("{1}{U}")
|
||||
), filter, false, SetTargetPointer.PERMANENT, null
|
||||
));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue