mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
Implemented Spirit Flare
This commit is contained in:
parent
2d14a1d12e
commit
55173733e6
2 changed files with 95 additions and 0 deletions
94
Mage.Sets/src/mage/cards/s/SpiritFlare.java
Normal file
94
Mage.Sets/src/mage/cards/s/SpiritFlare.java
Normal file
|
@ -0,0 +1,94 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.costs.common.PayLifeCost;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.keyword.FlashbackAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.TargetController;
|
||||
import mage.constants.TimingRule;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterAttackingOrBlockingCreature;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.permanent.ControllerPredicate;
|
||||
import mage.filter.predicate.permanent.TappedPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SpiritFlare extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter
|
||||
= new FilterControlledCreaturePermanent("untapped creature you control");
|
||||
private static final FilterPermanent filter2
|
||||
= new FilterAttackingOrBlockingCreature("attacking or blocking creature an opponent controls");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(TappedPredicate.instance));
|
||||
filter2.add(new ControllerPredicate(TargetController.OPPONENT));
|
||||
}
|
||||
|
||||
public SpiritFlare(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{W}");
|
||||
|
||||
// Tap target untapped creature you control. If you do, it deals damage equal to its power to target attacking or blocking creature an opponent controls.
|
||||
this.getSpellAbility().addEffect(new SpiritFlareEffect());
|
||||
this.getSpellAbility().addTarget(new TargetPermanent(filter));
|
||||
this.getSpellAbility().addTarget(new TargetPermanent(filter2));
|
||||
|
||||
// Flashback-{1}{W}, Pay 3 life.
|
||||
FlashbackAbility ability = new FlashbackAbility(new ManaCostsImpl("{1}{W}"), TimingRule.INSTANT);
|
||||
ability.addCost(new PayLifeCost(3));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private SpiritFlare(final SpiritFlare card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SpiritFlare copy() {
|
||||
return new SpiritFlare(this);
|
||||
}
|
||||
}
|
||||
|
||||
class SpiritFlareEffect extends OneShotEffect {
|
||||
|
||||
SpiritFlareEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "tap target untapped creature you control. If you do, " +
|
||||
"it deals damage equal to its power to target attacking or blocking creature an opponent controls";
|
||||
}
|
||||
|
||||
private SpiritFlareEffect(final SpiritFlareEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SpiritFlareEffect copy() {
|
||||
return new SpiritFlareEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Permanent permanent = game.getPermanent(source.getFirstTarget());
|
||||
if (permanent == null || !permanent.tap(game)) {
|
||||
return false;
|
||||
}
|
||||
Permanent permanent1 = game.getPermanent(source.getTargets().get(1).getFirstTarget());
|
||||
if (permanent1 == null) {
|
||||
return false;
|
||||
}
|
||||
return permanent1.damage(permanent.getPower().getValue(), permanent.getId(), game) > 0;
|
||||
}
|
||||
}
|
|
@ -147,6 +147,7 @@ public final class Torment extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Slithery Stalker", 84, Rarity.UNCOMMON, mage.cards.s.SlitheryStalker.class));
|
||||
cards.add(new SetCardInfo("Sonic Seizure", 115, Rarity.COMMON, mage.cards.s.SonicSeizure.class));
|
||||
cards.add(new SetCardInfo("Soul Scourge", 85, Rarity.COMMON, mage.cards.s.SoulScourge.class));
|
||||
cards.add(new SetCardInfo("Spirit Flare", 15, Rarity.COMMON, mage.cards.s.SpiritFlare.class));
|
||||
cards.add(new SetCardInfo("Stern Judge", 16, Rarity.UNCOMMON, mage.cards.s.SternJudge.class));
|
||||
cards.add(new SetCardInfo("Strength of Isolation", 17, Rarity.UNCOMMON, mage.cards.s.StrengthOfIsolation.class));
|
||||
cards.add(new SetCardInfo("Strength of Lunacy", 86, Rarity.UNCOMMON, mage.cards.s.StrengthOfLunacy.class));
|
||||
|
|
Loading…
Reference in a new issue