diff --git a/Mage.Sets/src/mage/cards/f/FeastOfTheVictoriousDead.java b/Mage.Sets/src/mage/cards/f/FeastOfTheVictoriousDead.java new file mode 100644 index 0000000000..2d13a8e712 --- /dev/null +++ b/Mage.Sets/src/mage/cards/f/FeastOfTheVictoriousDead.java @@ -0,0 +1,100 @@ +package mage.cards.f; + +import mage.abilities.Ability; +import mage.abilities.common.BeginningOfEndStepTriggeredAbility; +import mage.abilities.condition.Condition; +import mage.abilities.dynamicvalue.common.CreaturesDiedThisTurnCount; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.effects.common.GainLifeEffect; +import mage.abilities.hint.common.CreaturesDiedThisTurnHint; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.Outcome; +import mage.constants.TargetController; +import mage.counters.CounterType; +import mage.filter.StaticFilters; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.players.Player; +import mage.target.TargetAmount; +import mage.target.common.TargetCreaturePermanentAmount; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class FeastOfTheVictoriousDead extends CardImpl { + + public FeastOfTheVictoriousDead(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{W}{B}"); + + // At the beginning of your end step, if one or more creatures died this turn, you gain that much life and distribute that many +1/+1 counters among creatures you control. + Ability ability = new BeginningOfEndStepTriggeredAbility( + new GainLifeEffect(CreaturesDiedThisTurnCount.instance) + .setText("you gain that much life"), + TargetController.YOU, FeastOfTheVictoriousDeadCondition.instance, false + ); + ability.addEffect(new FeastOfTheVictoriousDeadEffect()); + this.addAbility(ability.addHint(CreaturesDiedThisTurnHint.instance)); + } + + private FeastOfTheVictoriousDead(final FeastOfTheVictoriousDead card) { + super(card); + } + + @Override + public FeastOfTheVictoriousDead copy() { + return new FeastOfTheVictoriousDead(this); + } +} + +enum FeastOfTheVictoriousDeadCondition implements Condition { + instance; + + @Override + public boolean apply(Game game, Ability source) { + return CreaturesDiedThisTurnCount.instance.calculate(game, source, null) > 0; + } + + @Override + public String toString() { + return "one or more creatures died this turn"; + } +} + +class FeastOfTheVictoriousDeadEffect extends OneShotEffect { + + FeastOfTheVictoriousDeadEffect() { + super(Outcome.Benefit); + staticText = "and distribute that many +1/+1 counters among creatures you control"; + } + + private FeastOfTheVictoriousDeadEffect(final FeastOfTheVictoriousDeadEffect effect) { + super(effect); + } + + @Override + public FeastOfTheVictoriousDeadEffect copy() { + return new FeastOfTheVictoriousDeadEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Player player = game.getPlayer(source.getControllerId()); + if (player == null) { + return false; + } + TargetAmount target = new TargetCreaturePermanentAmount(CreaturesDiedThisTurnCount.instance, StaticFilters.FILTER_CONTROLLED_CREATURE); + target.setNotTarget(true); + player.choose(outcome, target, source, game); + for (UUID targetId : target.getTargets()) { + Permanent permanent = game.getPermanent(targetId); + if (permanent != null) { + permanent.addCounters(CounterType.P1P1.createInstance(target.getTargetAmount(targetId)), source, game); + } + } + return true; + } +} diff --git a/Mage.Sets/src/mage/sets/MarchOfTheMachineTheAftermath.java b/Mage.Sets/src/mage/sets/MarchOfTheMachineTheAftermath.java index b27b4810b7..87abaf9035 100644 --- a/Mage.Sets/src/mage/sets/MarchOfTheMachineTheAftermath.java +++ b/Mage.Sets/src/mage/sets/MarchOfTheMachineTheAftermath.java @@ -24,6 +24,7 @@ public final class MarchOfTheMachineTheAftermath extends ExpansionSet { cards.add(new SetCardInfo("Campus Renovation", 27, Rarity.UNCOMMON, mage.cards.c.CampusRenovation.class)); cards.add(new SetCardInfo("Coppercoat Vanguard", 1, Rarity.UNCOMMON, mage.cards.c.CoppercoatVanguard.class)); cards.add(new SetCardInfo("Drannith Ruins", 50, Rarity.RARE, mage.cards.d.DrannithRuins.class)); + cards.add(new SetCardInfo("Feast of the Victorious Dead", 30, Rarity.UNCOMMON, mage.cards.f.FeastOfTheVictoriousDead.class)); cards.add(new SetCardInfo("Filter Out", 7, Rarity.UNCOMMON, mage.cards.f.FilterOut.class)); cards.add(new SetCardInfo("Gold-Forged Thopteryx", 31, Rarity.UNCOMMON, mage.cards.g.GoldForgedThopteryx.class)); cards.add(new SetCardInfo("Harnessed Snubhorn", 3, Rarity.UNCOMMON, mage.cards.h.HarnessedSnubhorn.class));