From 6eed582cd06061908297f39d4a94b452c80eb1fc Mon Sep 17 00:00:00 2001 From: theelk801 Date: Fri, 9 Jan 2026 10:36:51 -0500 Subject: [PATCH] [ECL] Implement Blight Rot --- Mage.Sets/src/mage/cards/b/BlightRot.java | 33 +++++++++++++++++++++ Mage.Sets/src/mage/sets/LorwynEclipsed.java | 1 + 2 files changed, 34 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/b/BlightRot.java diff --git a/Mage.Sets/src/mage/cards/b/BlightRot.java b/Mage.Sets/src/mage/cards/b/BlightRot.java new file mode 100644 index 00000000000..b2ecf3d0fec --- /dev/null +++ b/Mage.Sets/src/mage/cards/b/BlightRot.java @@ -0,0 +1,33 @@ +package mage.cards.b; + +import mage.abilities.effects.common.counter.AddCountersTargetEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.counters.CounterType; +import mage.target.common.TargetCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class BlightRot extends CardImpl { + + public BlightRot(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{B}"); + + // Put four -1/-1 counters on target creature. + this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.P1P1.createInstance(4))); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + } + + private BlightRot(final BlightRot card) { + super(card); + } + + @Override + public BlightRot copy() { + return new BlightRot(this); + } +} diff --git a/Mage.Sets/src/mage/sets/LorwynEclipsed.java b/Mage.Sets/src/mage/sets/LorwynEclipsed.java index 5d2c0786ad6..5ea92b95fbe 100644 --- a/Mage.Sets/src/mage/sets/LorwynEclipsed.java +++ b/Mage.Sets/src/mage/sets/LorwynEclipsed.java @@ -35,6 +35,7 @@ public final class LorwynEclipsed extends ExpansionSet { cards.add(new SetCardInfo("Bitterbloom Bearer", 310, Rarity.MYTHIC, mage.cards.b.BitterbloomBearer.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Bitterbloom Bearer", 352, Rarity.MYTHIC, mage.cards.b.BitterbloomBearer.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Bitterbloom Bearer", 88, Rarity.MYTHIC, mage.cards.b.BitterbloomBearer.class, NON_FULL_USE_VARIOUS)); + cards.add(new SetCardInfo("Blight Rot", 89, Rarity.COMMON, mage.cards.b.BlightRot.class)); cards.add(new SetCardInfo("Blighted Blackthorn", 90, Rarity.COMMON, mage.cards.b.BlightedBlackthorn.class)); cards.add(new SetCardInfo("Blood Crypt", "349b", Rarity.RARE, mage.cards.b.BloodCrypt.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Blood Crypt", 262, Rarity.RARE, mage.cards.b.BloodCrypt.class, NON_FULL_USE_VARIOUS));