diff --git a/Mage.Sets/src/mage/cards/f/FeedTheCycle.java b/Mage.Sets/src/mage/cards/f/FeedTheCycle.java new file mode 100644 index 00000000000..bf376140f1d --- /dev/null +++ b/Mage.Sets/src/mage/cards/f/FeedTheCycle.java @@ -0,0 +1,40 @@ +package mage.cards.f; + +import mage.abilities.costs.OrCost; +import mage.abilities.costs.common.ForageCost; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.DestroyTargetEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.target.common.TargetCreatureOrPlaneswalker; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class FeedTheCycle extends CardImpl { + + public FeedTheCycle(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{B}"); + + // As an additional cost to cast this spell, forage or pay {B}. + this.getSpellAbility().addCost(new OrCost( + "forage or pay {B}", new ForageCost(), new ManaCostsImpl<>("{B}") + )); + + // Destroy target creature or planeswalker. + this.getSpellAbility().addEffect(new DestroyTargetEffect()); + this.getSpellAbility().addTarget(new TargetCreatureOrPlaneswalker()); + } + + private FeedTheCycle(final FeedTheCycle card) { + super(card); + } + + @Override + public FeedTheCycle copy() { + return new FeedTheCycle(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Bloomburrow.java b/Mage.Sets/src/mage/sets/Bloomburrow.java index 5ded8705cae..f94eb05c30d 100644 --- a/Mage.Sets/src/mage/sets/Bloomburrow.java +++ b/Mage.Sets/src/mage/sets/Bloomburrow.java @@ -52,6 +52,7 @@ public final class Bloomburrow extends ExpansionSet { cards.add(new SetCardInfo("Emberheart Challenger", 133, Rarity.RARE, mage.cards.e.EmberheartChallenger.class)); cards.add(new SetCardInfo("Fabled Passage", 252, Rarity.RARE, mage.cards.f.FabledPassage.class)); cards.add(new SetCardInfo("Feather of Flight", 13, Rarity.UNCOMMON, mage.cards.f.FeatherOfFlight.class)); + cards.add(new SetCardInfo("Feed the Cycle", 94, Rarity.UNCOMMON, mage.cards.f.FeedTheCycle.class)); cards.add(new SetCardInfo("Fell", 95, Rarity.UNCOMMON, mage.cards.f.Fell.class)); cards.add(new SetCardInfo("Finch Formation", 50, Rarity.COMMON, mage.cards.f.FinchFormation.class)); cards.add(new SetCardInfo("Finneas, Ace Archer", 212, Rarity.RARE, mage.cards.f.FinneasAceArcher.class));