[NEO] fixed Replication Specialist text generation (closes #8643)

This commit is contained in:
Evan Kranzler 2022-02-04 17:19:38 -05:00
parent 50a78526dc
commit 8df3fdd6cb

View file

@ -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
));
}