diff --git a/Mage.Sets/src/mage/cards/a/AberrantReturn.java b/Mage.Sets/src/mage/cards/a/AberrantReturn.java new file mode 100644 index 00000000000..ccf74be78d1 --- /dev/null +++ b/Mage.Sets/src/mage/cards/a/AberrantReturn.java @@ -0,0 +1,36 @@ +package mage.cards.a; + +import mage.abilities.effects.common.ReturnFromGraveyardToBattlefieldWithCounterTargetEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.counters.CounterType; +import mage.filter.StaticFilters; +import mage.target.common.TargetCardInGraveyard; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class AberrantReturn extends CardImpl { + + public AberrantReturn(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{4}{B}{B}"); + + // Put one, two, or three target creature cards from graveyards onto the battlefield under your control. Each of them enters with an additional -1/-1 counter on it. + this.getSpellAbility().addEffect(new ReturnFromGraveyardToBattlefieldWithCounterTargetEffect(CounterType.M1M1.createInstance()) + .setText("put one, two, or three target creature cards from graveyards onto the battlefield " + + "under your control. Each of them enters with an additional -1/-1 counter on it")); + this.getSpellAbility().addTarget(new TargetCardInGraveyard(1, 3, StaticFilters.FILTER_CARD_CREATURES)); + } + + private AberrantReturn(final AberrantReturn card) { + super(card); + } + + @Override + public AberrantReturn copy() { + return new AberrantReturn(this); + } +} diff --git a/Mage.Sets/src/mage/sets/LorwynEclipsedCommander.java b/Mage.Sets/src/mage/sets/LorwynEclipsedCommander.java index aa8ab4adf0e..bbf5ae61327 100644 --- a/Mage.Sets/src/mage/sets/LorwynEclipsedCommander.java +++ b/Mage.Sets/src/mage/sets/LorwynEclipsedCommander.java @@ -19,6 +19,8 @@ public final class LorwynEclipsedCommander extends ExpansionSet { super("Lorwyn Eclipsed Commander", "ECC", ExpansionSet.buildDate(2026, 1, 23), SetType.SUPPLEMENTAL); this.hasBasicLands = false; // temporary + cards.add(new SetCardInfo("Aberrant Return", 27, Rarity.RARE, mage.cards.a.AberrantReturn.class, NON_FULL_USE_VARIOUS)); + cards.add(new SetCardInfo("Aberrant Return", 7, Rarity.RARE, mage.cards.a.AberrantReturn.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Abundant Countryside", 22, Rarity.RARE, mage.cards.a.AbundantCountryside.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Abundant Countryside", 42, Rarity.RARE, mage.cards.a.AbundantCountryside.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Abundant Growth", 97, Rarity.COMMON, mage.cards.a.AbundantGrowth.class));