mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Merge pull request #6724 from arcox/choking-vines-text
Fix Choking Vines oracle text (#6654)
This commit is contained in:
commit
00c8d24be4
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue