replace the name of the card with {this} for effect text

This commit is contained in:
Mathieu Pouedras 2018-01-08 12:04:56 +01:00
parent 096f2c0e51
commit 0fe65e99fa

View file

@ -95,7 +95,7 @@ class BroodOfCockroachesEffect extends OneShotEffect {
game.addDelayedTriggeredAbility(delayedLifeLost, source);
Effect effect = new ReturnToHandTargetEffect();
effect.setText("return Brood of Cockroaches to your hand.");
effect.setText("return {this} to your hand.");
effect.setTargetPointer(new FixedTarget(source.getSourceId(), source.getSourceObjectZoneChangeCounter()));
DelayedTriggeredAbility delayedAbility = new AtTheBeginOfNextEndStepDelayedTriggeredAbility(effect);
game.addDelayedTriggeredAbility(delayedAbility, source);