Fix Choking Vines oracle text

This commit is contained in:
arcox 2020-06-26 01:02:34 -04:00
parent 5ae041f39a
commit 2dc502b535

View file

@ -37,7 +37,8 @@ public final class ChokingVines extends CardImpl {
// X target attacking creatures become blocked. Choking Vines deals 1 damage to each of those creatures.
this.getSpellAbility().addEffect(new ChokingVinesEffect());
this.getSpellAbility().addEffect(new DamageTargetEffect(1));
this.getSpellAbility().addEffect(new DamageTargetEffect(1)
.setText("{this} deals 1 damage to each of those creatures"));
this.getSpellAbility().setTargetAdjuster(ChokingVinesAdjuster.instance);
}