Fix Dewdrop Cure - return to battlefield, not hand.

This commit is contained in:
Grath 2024-08-26 10:24:54 -04:00 committed by GitHub
parent 119ef2b5d4
commit 71ac5cf11f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,7 @@ package mage.cards.d;
import mage.abilities.condition.common.GiftWasPromisedCondition;
import mage.abilities.effects.common.InfoEffect;
import mage.abilities.effects.common.ReturnFromGraveyardToHandTargetEffect;
import mage.abilities.effects.common.ReturnFromGraveyardToBattlefieldTargetEffect;
import mage.abilities.keyword.GiftAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
@ -36,7 +36,7 @@ public final class DewdropCure extends CardImpl {
this.addAbility(new GiftAbility(this, GiftType.CARD));
// Return up to two target creature cards each with mana value 2 or less from your graveyard to the battlefield. If the gift was promised, instead return up to three target creature cards each with mana value 2 or less from your graveyard to the battlefield.
this.getSpellAbility().addEffect(new ReturnFromGraveyardToHandTargetEffect());
this.getSpellAbility().addEffect(new ReturnFromGraveyardToBattlefieldTargetEffect());
this.getSpellAbility().addEffect(new InfoEffect(
"If the gift was promised, instead return up to three target creature cards " +
"each with mana value 2 or less from your graveyard to the battlefield"