diff --git a/Mage.Sets/src/mage/cards/f/FallajiExcavation.java b/Mage.Sets/src/mage/cards/f/FallajiExcavation.java new file mode 100644 index 00000000000..5ce79cd7e01 --- /dev/null +++ b/Mage.Sets/src/mage/cards/f/FallajiExcavation.java @@ -0,0 +1,33 @@ +package mage.cards.f; + +import mage.abilities.effects.common.CreateTokenEffect; +import mage.abilities.effects.common.GainLifeEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.game.permanent.token.PowerstoneToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class FallajiExcavation extends CardImpl { + + public FallajiExcavation(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{G}{G}"); + + // Create three tapped Powerstone tokens. You gain 3 life. + this.getSpellAbility().addEffect(new CreateTokenEffect(new PowerstoneToken(), 3, true)); + this.getSpellAbility().addEffect(new GainLifeEffect(3)); + } + + private FallajiExcavation(final FallajiExcavation card) { + super(card); + } + + @Override + public FallajiExcavation copy() { + return new FallajiExcavation(this); + } +} diff --git a/Mage.Sets/src/mage/sets/TheBrothersWar.java b/Mage.Sets/src/mage/sets/TheBrothersWar.java index cc6d3ee7553..ec106e3c18a 100644 --- a/Mage.Sets/src/mage/sets/TheBrothersWar.java +++ b/Mage.Sets/src/mage/sets/TheBrothersWar.java @@ -48,6 +48,7 @@ public final class TheBrothersWar extends ExpansionSet { cards.add(new SetCardInfo("Epic Confrontation", 176, Rarity.COMMON, mage.cards.e.EpicConfrontation.class)); cards.add(new SetCardInfo("Fade from History", 177, Rarity.RARE, mage.cards.f.FadeFromHistory.class)); cards.add(new SetCardInfo("Fallaji Dragon Engine", 159, Rarity.UNCOMMON, mage.cards.f.FallajiDragonEngine.class)); + cards.add(new SetCardInfo("Fallaji Excavation", 178, Rarity.UNCOMMON, mage.cards.f.FallajiExcavation.class)); cards.add(new SetCardInfo("Feldon, Ronom Excavator", 135, Rarity.RARE, mage.cards.f.FeldonRonomExcavator.class)); cards.add(new SetCardInfo("Flow of Knowledge", 49, Rarity.UNCOMMON, mage.cards.f.FlowOfKnowledge.class)); cards.add(new SetCardInfo("Forest", 286, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));