mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
fix [FIN] Hope Estheim (missing watcher)
This commit is contained in:
parent
361c320890
commit
d7bc249bfd
1 changed files with 2 additions and 1 deletions
|
|
@ -11,6 +11,7 @@ import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.constants.SuperType;
|
import mage.constants.SuperType;
|
||||||
import mage.constants.TargetController;
|
import mage.constants.TargetController;
|
||||||
|
import mage.watchers.common.PlayerGainedLifeWatcher;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
|
@ -34,7 +35,7 @@ public final class HopeEstheim extends CardImpl {
|
||||||
// At the beginning of your end step, each opponent mills X cards, where X is the amount of life you gained this turn.
|
// At the beginning of your end step, each opponent mills X cards, where X is the amount of life you gained this turn.
|
||||||
this.addAbility(new BeginningOfEndStepTriggeredAbility(new MillCardsEachPlayerEffect(
|
this.addAbility(new BeginningOfEndStepTriggeredAbility(new MillCardsEachPlayerEffect(
|
||||||
ControllerGainedLifeCount.instance, TargetController.OPPONENT
|
ControllerGainedLifeCount.instance, TargetController.OPPONENT
|
||||||
)));
|
)), new PlayerGainedLifeWatcher());
|
||||||
}
|
}
|
||||||
|
|
||||||
private HopeEstheim(final HopeEstheim card) {
|
private HopeEstheim(final HopeEstheim card) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue