From 8ecb0b96acefb27d1d1e0d8def76fd058c4246a0 Mon Sep 17 00:00:00 2001 From: theelk801 Date: Mon, 4 Nov 2024 20:45:21 -0500 Subject: [PATCH] [FDN] fix counter type for Ravenous Amulet --- Mage.Sets/src/mage/cards/r/RavenousAmulet.java | 8 ++++---- Mage/src/main/java/mage/counters/CounterType.java | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/cards/r/RavenousAmulet.java b/Mage.Sets/src/mage/cards/r/RavenousAmulet.java index bb0b0844252..0d010bb77fc 100644 --- a/Mage.Sets/src/mage/cards/r/RavenousAmulet.java +++ b/Mage.Sets/src/mage/cards/r/RavenousAmulet.java @@ -25,21 +25,21 @@ import java.util.UUID; */ public final class RavenousAmulet extends CardImpl { - private static final DynamicValue xValue = new CountersSourceCount(CounterType.SPIRIT); + private static final DynamicValue xValue = new CountersSourceCount(CounterType.SOUL); public RavenousAmulet(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{2}"); - // {1}, {T}, Sacrifice a creature: Draw a card and put a spirit counter on this artifact. Activate only as a sorcery. + // {1}, {T}, Sacrifice a creature: Draw a card and put a soul counter on this artifact. Activate only as a sorcery. Ability ability = new ActivateAsSorceryActivatedAbility( new DrawCardSourceControllerEffect(1), new GenericManaCost(1) ); ability.addCost(new TapSourceCost()); ability.addCost(new SacrificeTargetCost(StaticFilters.FILTER_PERMANENT_A_CREATURE)); - ability.addEffect(new AddCountersSourceEffect(CounterType.SPIRIT.createInstance()).concatBy("and")); + ability.addEffect(new AddCountersSourceEffect(CounterType.SOUL.createInstance()).concatBy("and")); this.addAbility(ability); - // {4}, {T}, Sacrifice this artifact: Each opponent loses life equal to the number of spirit counters on this artifact. + // {4}, {T}, Sacrifice this artifact: Each opponent loses life equal to the number of soul counters on this artifact. ability = new SimpleActivatedAbility(new LoseLifeOpponentsEffect(xValue), new GenericManaCost(4)); ability.addCost(new TapSourceCost()); ability.addCost(new SacrificeSourceCost()); diff --git a/Mage/src/main/java/mage/counters/CounterType.java b/Mage/src/main/java/mage/counters/CounterType.java index 1bda10eef7f..67402fc7489 100644 --- a/Mage/src/main/java/mage/counters/CounterType.java +++ b/Mage/src/main/java/mage/counters/CounterType.java @@ -205,7 +205,6 @@ public enum CounterType { SLUMBER("slumber"), SOOT("soot"), SOUL("soul"), - SPIRIT("spirit"), SPITE("spite"), SPORE("spore"), STASH("stash"),