From 721b9b90c9895d95d9a9ea4488b584861134a679 Mon Sep 17 00:00:00 2001 From: jmlundeen Date: Fri, 5 Sep 2025 13:12:17 -0500 Subject: [PATCH] [SPM] update Mister Negative name and text --- Mage.Sets/src/mage/cards/m/MisterNegative.java | 3 ++- .../org/mage/test/cards/single/spm/MisterNegativeTest.java | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/m/MisterNegative.java b/Mage.Sets/src/mage/cards/m/MisterNegative.java index 9f402b13220..90442400bff 100644 --- a/Mage.Sets/src/mage/cards/m/MisterNegative.java +++ b/Mage.Sets/src/mage/cards/m/MisterNegative.java @@ -38,9 +38,10 @@ public final class MisterNegative extends CardImpl { // Lifelink this.addAbility(LifelinkAbility.getInstance()); - // When Mr. Negative enters, you may exchange your life total with target opponent. If you lose life this way, draw that many cards. + // Darkforce Inversion — When Mister Negative enters, you may exchange your life total with target opponent. If you lose life this way, draw that many cards. Ability ability = new EntersBattlefieldTriggeredAbility(new MisterNegativeEffect(), true); ability.addTarget(new TargetOpponent()); + ability.withFlavorWord("Darkforce Inversion"); this.addAbility(ability); } diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/spm/MisterNegativeTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/spm/MisterNegativeTest.java index 6f97eb39a94..029e1298138 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/single/spm/MisterNegativeTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/spm/MisterNegativeTest.java @@ -11,11 +11,11 @@ import org.mage.test.serverside.base.CardTestPlayerBase; public class MisterNegativeTest extends CardTestPlayerBase { /* - Misterr Negative + Mister Negative {5}{W}{B} Legendary Creature - Human Villain Vigilance, lifelink - When Misterr Negative enters, you may exchange your life total with target opponent. If you lose life this way, draw that many cards. + When Mister Negative enters, you may exchange your life total with target opponent. If you lose life this way, draw that many cards. 5/5 */ private static final String misterNegative = "Mister Negative";