Merge pull request #6724 from arcox/choking-vines-text

Fix Choking Vines oracle text (#6654)
This commit is contained in:
Oleg Agafonov 2020-06-26 07:08:37 +02:00 committed by GitHub
commit 00c8d24be4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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