From 798b937f76d0c2e1c7db5f2452d1f7699fcb12ed Mon Sep 17 00:00:00 2001 From: theelk801 Date: Fri, 6 Sep 2024 14:32:22 -0400 Subject: [PATCH] fix verify failure --- Mage.Sets/src/mage/cards/s/SpineseekerCentipede.java | 2 +- Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/s/SpineseekerCentipede.java b/Mage.Sets/src/mage/cards/s/SpineseekerCentipede.java index e53349d3bc6..24bfe7bb6fe 100644 --- a/Mage.Sets/src/mage/cards/s/SpineseekerCentipede.java +++ b/Mage.Sets/src/mage/cards/s/SpineseekerCentipede.java @@ -28,7 +28,7 @@ import java.util.UUID; public final class SpineseekerCentipede extends CardImpl { public SpineseekerCentipede(UUID ownerId, CardSetInfo setInfo) { - super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}"); + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}"); this.subtype.add(SubType.INSECT); this.power = new MageInt(2); diff --git a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java index e61cb2df221..ca45bc385d1 100644 --- a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java +++ b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java @@ -143,6 +143,7 @@ public class VerifyCardDataTest { skipListAddName(SKIP_LIST_TYPE, "UND", "Old Fogey"); skipListAddName(SKIP_LIST_TYPE, "UST", "capital offense"); // uses "instant" instead "Instant" as a joke card skipListAddName(SKIP_LIST_TYPE, "DSK", "Balustrade Wurm"); // temporary + skipListAddName(SKIP_LIST_TYPE, "DSK", "Spineseeker Centipede"); // temporary // subtype // skipListAddName(SKIP_LIST_SUBTYPE, set, cardName); @@ -150,6 +151,7 @@ public class VerifyCardDataTest { skipListAddName(SKIP_LIST_SUBTYPE, "UGL", "Elvish Impersonators"); // subtype is "Elves" pun skipListAddName(SKIP_LIST_SUBTYPE, "UND", "Elvish Impersonators"); skipListAddName(SKIP_LIST_SUBTYPE, "DSK", "Balustrade Wurm"); // temporary + skipListAddName(SKIP_LIST_SUBTYPE, "DSK", "Spineseeker Centipede"); // temporary // number // skipListAddName(SKIP_LIST_NUMBER, set, cardName);