From 93149bccdd96be6afc51dd858327962fec6124be Mon Sep 17 00:00:00 2001 From: theelk801 Date: Thu, 24 Aug 2023 17:08:40 -0400 Subject: [PATCH] [WOE] Implement Bellowing Bruiser --- .../src/mage/cards/b/BellowingBruiser.java | 44 +++++++++++++++++++ Mage.Sets/src/mage/sets/WildsOfEldraine.java | 1 + 2 files changed, 45 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/b/BellowingBruiser.java diff --git a/Mage.Sets/src/mage/cards/b/BellowingBruiser.java b/Mage.Sets/src/mage/cards/b/BellowingBruiser.java new file mode 100644 index 00000000000..32ea3d751fd --- /dev/null +++ b/Mage.Sets/src/mage/cards/b/BellowingBruiser.java @@ -0,0 +1,44 @@ +package mage.cards.b; + +import mage.MageInt; +import mage.abilities.effects.common.combat.CantBlockTargetEffect; +import mage.abilities.keyword.HasteAbility; +import mage.cards.AdventureCard; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.Duration; +import mage.constants.SubType; +import mage.target.common.TargetCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class BellowingBruiser extends AdventureCard { + + public BellowingBruiser(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.SORCERY}, "{4}{R}", "Beat a Path", "{2}{R}"); + + this.subtype.add(SubType.OGRE); + this.power = new MageInt(4); + this.toughness = new MageInt(4); + + // Haste + this.addAbility(HasteAbility.getInstance()); + + // Beat a Path + // Up to two target creatures can't block this turn. + this.getSpellCard().getSpellAbility().addEffect(new CantBlockTargetEffect(Duration.EndOfTurn)); + this.getSpellCard().getSpellAbility().addTarget(new TargetCreaturePermanent(0, 2)); + } + + private BellowingBruiser(final BellowingBruiser card) { + super(card); + } + + @Override + public BellowingBruiser copy() { + return new BellowingBruiser(this); + } +} diff --git a/Mage.Sets/src/mage/sets/WildsOfEldraine.java b/Mage.Sets/src/mage/sets/WildsOfEldraine.java index 40dbb771e86..c94380d63f4 100644 --- a/Mage.Sets/src/mage/sets/WildsOfEldraine.java +++ b/Mage.Sets/src/mage/sets/WildsOfEldraine.java @@ -33,6 +33,7 @@ public final class WildsOfEldraine extends ExpansionSet { cards.add(new SetCardInfo("Beanstalk Wurm", 161, Rarity.COMMON, mage.cards.b.BeanstalkWurm.class)); cards.add(new SetCardInfo("Become Brutes", 317, Rarity.UNCOMMON, mage.cards.b.BecomeBrutes.class)); cards.add(new SetCardInfo("Belligerent of the Ball", 120, Rarity.UNCOMMON, mage.cards.b.BelligerentOfTheBall.class)); + cards.add(new SetCardInfo("Bellowing Bruiser", 121, Rarity.COMMON, mage.cards.b.BellowingBruiser.class)); cards.add(new SetCardInfo("Beluna Grandsquall", 220, Rarity.MYTHIC, mage.cards.b.BelunaGrandsquall.class)); cards.add(new SetCardInfo("Beseech the Mirror", 82, Rarity.MYTHIC, mage.cards.b.BeseechTheMirror.class)); cards.add(new SetCardInfo("Besotted Knight", 4, Rarity.COMMON, mage.cards.b.BesottedKnight.class));