From 5413389c7d4a17068c13f9e570992e0e6dfafc23 Mon Sep 17 00:00:00 2001 From: Daniel Bomar Date: Wed, 29 Jun 2022 11:04:35 -0500 Subject: [PATCH] [NCC] Implemented Bellowing Mauler --- .../src/mage/cards/b/BellowingMauler.java | 90 +++++++++++++++++++ .../src/mage/sets/NewCapennaCommander.java | 1 + 2 files changed, 91 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/b/BellowingMauler.java diff --git a/Mage.Sets/src/mage/cards/b/BellowingMauler.java b/Mage.Sets/src/mage/cards/b/BellowingMauler.java new file mode 100644 index 0000000000..43a37c55ce --- /dev/null +++ b/Mage.Sets/src/mage/cards/b/BellowingMauler.java @@ -0,0 +1,90 @@ +package mage.cards.b; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.BeginningOfYourEndStepTriggeredAbility; +import mage.abilities.effects.OneShotEffect; +import mage.constants.Outcome; +import mage.constants.SubType; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.filter.common.FilterControlledCreaturePermanent; +import mage.filter.predicate.permanent.TokenPredicate; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.players.Player; +import mage.target.TargetPermanent; + +/** + * + * @author weirddan455 + */ +public final class BellowingMauler extends CardImpl { + + public BellowingMauler(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}"); + + this.subtype.add(SubType.OGRE); + this.subtype.add(SubType.WARRIOR); + this.power = new MageInt(4); + this.toughness = new MageInt(6); + + // At the beginning of your end step, each player loses 4 life unless they sacrifice a nontoken creature. + this.addAbility(new BeginningOfYourEndStepTriggeredAbility(new BellowingMaulerEffect(), false)); + } + + private BellowingMauler(final BellowingMauler card) { + super(card); + } + + @Override + public BellowingMauler copy() { + return new BellowingMauler(this); + } +} + +class BellowingMaulerEffect extends OneShotEffect { + + private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("nontoken creature"); + + static { + filter.add(TokenPredicate.FALSE); + } + + public BellowingMaulerEffect() { + super(Outcome.Sacrifice); + this.staticText = "each player loses 4 life unless they sacrifice a nontoken creature"; + } + + private BellowingMaulerEffect(final BellowingMaulerEffect effect) { + super(effect); + } + + @Override + public BellowingMaulerEffect copy() { + return new BellowingMaulerEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + for (UUID playerId : game.getState().getPlayersInRange(source.getControllerId(), game)) { + Player player = game.getPlayer(playerId); + if (player != null) { + boolean sacrificed = false; + TargetPermanent target = new TargetPermanent(1, 1, filter, true); + if (target.canChoose(playerId, source, game) + && player.chooseUse(Outcome.Sacrifice, "Sacrifice a nontoken creature or lose 4 life?", null, "Sacrifice", "Lose 4 life", source, game)) { + player.chooseTarget(Outcome.Sacrifice, target, source, game); + Permanent permanent = game.getPermanent(target.getFirstTarget()); + sacrificed = permanent != null && permanent.sacrifice(source, game); + } + if (!sacrificed) { + player.loseLife(4, game, source, false); + } + } + } + return true; + } +} diff --git a/Mage.Sets/src/mage/sets/NewCapennaCommander.java b/Mage.Sets/src/mage/sets/NewCapennaCommander.java index 94be9528aa..6c0c546a0d 100644 --- a/Mage.Sets/src/mage/sets/NewCapennaCommander.java +++ b/Mage.Sets/src/mage/sets/NewCapennaCommander.java @@ -47,6 +47,7 @@ public final class NewCapennaCommander extends ExpansionSet { cards.add(new SetCardInfo("Beast Within", 282, Rarity.UNCOMMON, mage.cards.b.BeastWithin.class)); cards.add(new SetCardInfo("Beastmaster Ascension", 283, Rarity.RARE, mage.cards.b.BeastmasterAscension.class)); cards.add(new SetCardInfo("Bedevil", 331, Rarity.RARE, mage.cards.b.Bedevil.class)); + cards.add(new SetCardInfo("Bellowing Mauler", 33, Rarity.RARE, mage.cards.b.BellowingMauler.class)); cards.add(new SetCardInfo("Bennie Bracks, Zoologist", 86, Rarity.MYTHIC, mage.cards.b.BennieBracksZoologist.class)); cards.add(new SetCardInfo("Blasphemous Act", 264, Rarity.RARE, mage.cards.b.BlasphemousAct.class)); cards.add(new SetCardInfo("Blighted Woodland", 388, Rarity.UNCOMMON, mage.cards.b.BlightedWoodland.class));