Use {this} in text

This commit is contained in:
ciaccona007 2017-07-04 08:19:45 -04:00
parent d653b997cc
commit a80bf19dc4

View file

@ -49,7 +49,7 @@ public class BlurOfBlades extends CardImpl {
// Put a -1/-1 counter on target creature. Blur of Blades deals 2 damage to that creature's controller.
getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.M1M1.createInstance(1)));
Effect effect = new DamageTargetControllerEffect(2);
effect.setText("Blur of Blades deals 2 damage to that creature's controller");
effect.setText("{this} deals 2 damage to that creature's controller");
getSpellAbility().addEffect(effect);
getSpellAbility().addTarget(new TargetCreaturePermanent());