mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
- outcome fixes for AI
This commit is contained in:
parent
9ca9bfa122
commit
b38f302dba
2 changed files with 19 additions and 17 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.s;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -19,16 +18,17 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
public final class SavageSurge extends CardImpl {
|
||||
|
||||
public SavageSurge(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{1}{G}");
|
||||
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{G}");
|
||||
|
||||
// Target creature gets +2/+2 until end of turn. Untap that creature.
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(2, 2, Duration.EndOfTurn));
|
||||
Effect effect = new UntapTargetEffect();
|
||||
effect.setOutcome(Outcome.Benefit);
|
||||
effect.setText("Untap that creature");
|
||||
this.getSpellAbility().addEffect(effect);
|
||||
Effect boostEffect = new BoostTargetEffect(2, 2, Duration.EndOfTurn);
|
||||
boostEffect.setOutcome(Outcome.Benefit);
|
||||
this.getSpellAbility().addEffect(boostEffect);
|
||||
Effect untapEffect = new UntapTargetEffect();
|
||||
untapEffect.setOutcome(Outcome.Benefit);
|
||||
untapEffect.setText("Untap that creature");
|
||||
this.getSpellAbility().addEffect(untapEffect);
|
||||
}
|
||||
|
||||
private SavageSurge(final SavageSurge card) {
|
||||
|
|
|
@ -1,34 +1,36 @@
|
|||
|
||||
|
||||
package mage.cards.t;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Outcome;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public final class TitanicGrowth extends CardImpl {
|
||||
|
||||
|
||||
public TitanicGrowth(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{1}{G}");
|
||||
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(4, 4, Duration.EndOfTurn));
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{G}");
|
||||
|
||||
Effect boostEffect = new BoostTargetEffect(4, 4, Duration.EndOfTurn);
|
||||
boostEffect.setOutcome(Outcome.Benefit);
|
||||
this.getSpellAbility().addEffect(boostEffect);
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
|
||||
private TitanicGrowth(final TitanicGrowth card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public TitanicGrowth copy() {
|
||||
return new TitanicGrowth(this);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue