fix Hazel's Nocturne

This commit is contained in:
xenohedron 2024-07-15 21:42:29 -04:00
parent 730dfba832
commit 5b892e6a80

View file

@ -21,9 +21,9 @@ public final class HazelsNocturne extends CardImpl {
// Return up to two target creature cards from your graveyard to your hand. Each opponent loses 2 life and you gain 2 life.
this.getSpellAbility().addEffect(new ReturnFromGraveyardToHandTargetEffect());
this.getSpellAbility().addTarget(new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURES_YOUR_GRAVEYARD));
this.getSpellAbility().addTarget(new TargetCardInYourGraveyard(0, 2, StaticFilters.FILTER_CARD_CREATURES_YOUR_GRAVEYARD));
this.getSpellAbility().addEffect(new LoseLifeOpponentsEffect(2));
this.getSpellAbility().addEffect(new GainLifeEffect(2));
this.getSpellAbility().addEffect(new GainLifeEffect(2).concatBy("and"));
}
private HazelsNocturne(final HazelsNocturne card) {