diff --git a/Mage.Sets/src/mage/cards/b/BeastieBeatdown.java b/Mage.Sets/src/mage/cards/b/BeastieBeatdown.java
new file mode 100644
index 00000000000..880054a14ad
--- /dev/null
+++ b/Mage.Sets/src/mage/cards/b/BeastieBeatdown.java
@@ -0,0 +1,55 @@
+package mage.cards.b;
+
+import mage.abilities.condition.common.DeliriumCondition;
+import mage.abilities.decorator.ConditionalOneShotEffect;
+import mage.abilities.effects.common.DamageWithPowerFromOneToAnotherTargetEffect;
+import mage.abilities.effects.common.InfoEffect;
+import mage.abilities.effects.common.counter.AddCountersTargetEffect;
+import mage.abilities.hint.common.CardTypesInGraveyardHint;
+import mage.cards.CardImpl;
+import mage.cards.CardSetInfo;
+import mage.constants.AbilityWord;
+import mage.constants.CardType;
+import mage.counters.CounterType;
+import mage.target.common.TargetControlledCreaturePermanent;
+import mage.target.common.TargetOpponentsCreaturePermanent;
+
+import java.util.UUID;
+
+/**
+ * @author TheElk801
+ */
+public final class BeastieBeatdown extends CardImpl {
+
+ public BeastieBeatdown(UUID ownerId, CardSetInfo setInfo) {
+ super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{R}{G}");
+
+ // Choose target creature you control and target creature an opponent controls.
+ this.getSpellAbility().addEffect(new InfoEffect(
+ "Choose target creature you control and target creature an opponent controls."
+ ));
+ this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent());
+ this.getSpellAbility().addTarget(new TargetOpponentsCreaturePermanent());
+
+ // Delirium -- If there are four or more card types among cards in your graveyard, put two +1/+1 counters on the creature you control.
+ this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
+ new AddCountersTargetEffect(CounterType.P1P1.createInstance(2)),
+ DeliriumCondition.instance, AbilityWord.DELIRIUM.formatWord() + "If there are four or more " +
+ "card types among cards in your graveyard, put two +1/+1 counters on the creature you control."
+ ).concatBy("
"));
+ this.getSpellAbility().addHint(CardTypesInGraveyardHint.YOU);
+
+ // The creature you control deals damage equal to its power to the creature an opponent controls.
+ this.getSpellAbility().addEffect(new DamageWithPowerFromOneToAnotherTargetEffect()
+ .setText("
The creature you control deals damage equal to its power to the creature an opponent controls."));
+ }
+
+ private BeastieBeatdown(final BeastieBeatdown card) {
+ super(card);
+ }
+
+ @Override
+ public BeastieBeatdown copy() {
+ return new BeastieBeatdown(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/DuskmournHouseOfHorror.java b/Mage.Sets/src/mage/sets/DuskmournHouseOfHorror.java
index 7564ee7aea9..0ce6954b5c0 100644
--- a/Mage.Sets/src/mage/sets/DuskmournHouseOfHorror.java
+++ b/Mage.Sets/src/mage/sets/DuskmournHouseOfHorror.java
@@ -33,6 +33,7 @@ public final class DuskmournHouseOfHorror extends ExpansionSet {
cards.add(new SetCardInfo("Baseball Bat", 209, Rarity.UNCOMMON, mage.cards.b.BaseballBat.class));
cards.add(new SetCardInfo("Bashful Beastie", 169, Rarity.COMMON, mage.cards.b.BashfulBeastie.class));
cards.add(new SetCardInfo("Bear Trap", 243, Rarity.COMMON, mage.cards.b.BearTrap.class));
+ cards.add(new SetCardInfo("Beastie Beatdown", 210, Rarity.UNCOMMON, mage.cards.b.BeastieBeatdown.class));
cards.add(new SetCardInfo("Bedhead Beastie", 125, Rarity.COMMON, mage.cards.b.BedheadBeastie.class));
cards.add(new SetCardInfo("Betrayer's Bargain", 126, Rarity.UNCOMMON, mage.cards.b.BetrayersBargain.class));
cards.add(new SetCardInfo("Blazemire Verge", 256, Rarity.RARE, mage.cards.b.BlazemireVerge.class));