mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 20:29:19 -08:00
* Scavenging Ooze - Fixed that the life gain was wrongly also appied if the exiled card was no creature card.
This commit is contained in:
parent
30869beca0
commit
643b7a5ad8
3 changed files with 47 additions and 18 deletions
|
|
@ -32,9 +32,7 @@ import mage.MageInt;
|
|||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
|
|
@ -65,9 +63,6 @@ public class ScavengingOoze extends CardImpl {
|
|||
// {G}: Exile target card from a graveyard. If it was a creature card, put a +1/+1 counter on Scavenging Ooze and you gain 1 life.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ScavengingOozeEffect(), new ManaCostsImpl("{G}"));
|
||||
ability.addTarget(new TargetCardInGraveyard());
|
||||
Effect effect = new GainLifeEffect(1);
|
||||
effect.setText("and you gain 1 life");
|
||||
ability.addEffect(effect);
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
@ -85,7 +80,7 @@ class ScavengingOozeEffect extends OneShotEffect {
|
|||
|
||||
public ScavengingOozeEffect() {
|
||||
super(Outcome.Benefit);
|
||||
this.staticText = "Exile target card from a graveyard. If it was a creature card, put a +1/+1 counter on {this}";
|
||||
this.staticText = "Exile target card from a graveyard. If it was a creature card, put a +1/+1 counter on {this} and you gain 1 life";
|
||||
}
|
||||
|
||||
public ScavengingOozeEffect(final ScavengingOozeEffect effect) {
|
||||
|
|
@ -108,6 +103,7 @@ class ScavengingOozeEffect extends OneShotEffect {
|
|||
if (sourcePermanent != null) {
|
||||
sourcePermanent.addCounters(CounterType.P1P1.createInstance(), game);
|
||||
}
|
||||
controller.gainLife(1, game);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,11 +28,11 @@
|
|||
package mage.sets.urzaslegacy;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.abilities.effects.common.ReturnToHandTargetEffect;
|
||||
import mage.abilities.effects.common.UntapLandsEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue