[M20] fixed Noxious Grasp with missing gain life ability

This commit is contained in:
Oleg Agafonov 2019-06-30 22:12:50 +04:00
parent 37f053f78d
commit a6a67ec255

View file

@ -2,6 +2,7 @@ package mage.cards.n;
import mage.ObjectColor;
import mage.abilities.effects.common.DestroyTargetEffect;
import mage.abilities.effects.common.GainLifeEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
@ -34,6 +35,7 @@ public final class NoxiousGrasp extends CardImpl {
// Destroy target creature or planeswalker that's green or white. You gain 1 life.
this.getSpellAbility().addEffect(new DestroyTargetEffect());
this.getSpellAbility().addTarget(new TargetPermanent(filter));
this.getSpellAbility().addEffect(new GainLifeEffect(1));
}
private NoxiousGrasp(final NoxiousGrasp card) {