[STX] fixed Willowdusk, Essence Seer adding counters when no life has been gained or lost (fixes #7875)

This commit is contained in:
Evan Kranzler 2021-06-06 18:34:20 -04:00
parent 0410cb5343
commit 568bfad743

View file

@ -48,7 +48,7 @@ public final class WillowduskEssenceSeer extends CardImpl {
// {1}, {T}: Choose another target creature. Put a number of +1/+1 counters on it equal to the amount of life you gained this turn or the amount of life you lost this turn, whichever is greater. Activate only as a sorcery.
Ability ability = new ActivateAsSorceryActivatedAbility(new AddCountersTargetEffect(
CounterType.P1P1.createInstance(), WillowduskEssenceSeerValue.instance
CounterType.P1P1.createInstance(0), WillowduskEssenceSeerValue.instance
).setText("choose another target creature. Put a number of +1/+1 counters on it " +
"equal to the amount of life you gained this turn or the amount of " +
"life you lost this turn, whichever is greater"), new GenericManaCost(1));