From 7da85577ef3cc2440a759333f0bc7528e629d945 Mon Sep 17 00:00:00 2001 From: jmlundeen Date: Mon, 1 Dec 2025 08:17:25 -0600 Subject: [PATCH] fix Disturb targets for back face auras --- Mage.Sets/src/mage/cards/d/DistractingGeist.java | 6 ++++-- Mage.Sets/src/mage/cards/d/DorotheaVengefulVictim.java | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/cards/d/DistractingGeist.java b/Mage.Sets/src/mage/cards/d/DistractingGeist.java index 8baef404c8a..4ee77838c3a 100644 --- a/Mage.Sets/src/mage/cards/d/DistractingGeist.java +++ b/Mage.Sets/src/mage/cards/d/DistractingGeist.java @@ -44,8 +44,6 @@ public final class DistractingGeist extends TransformingDoubleFacedCard { ability.addTarget(new TargetPermanent(filter)); this.getLeftHalfCard().addAbility(ability); - // Disturb {4}{W} - this.getLeftHalfCard().addAbility(new DisturbAbility(this, "{4}{W}")); // Clever Distraction @@ -55,6 +53,10 @@ public final class DistractingGeist extends TransformingDoubleFacedCard { this.getRightHalfCard().getSpellAbility().addEffect(new mage.abilities.effects.common.AttachEffect(Outcome.BoostCreature)); this.getRightHalfCard().addAbility(new EnchantAbility(auraTarget)); + // Disturb {4}{W} + // needs to be added after right half has spell ability target set + this.getLeftHalfCard().addAbility(new DisturbAbility(this, "{4}{W}")); + // Enchanted creature has "Whenever this creature attacks, tap target creature defending player controls." Ability ability2 = new AttacksTriggeredAbility(new TapTargetEffect()).setTriggerPhrase("Whenever this creature attacks, "); ability2.addTarget(new TargetPermanent(filter)); diff --git a/Mage.Sets/src/mage/cards/d/DorotheaVengefulVictim.java b/Mage.Sets/src/mage/cards/d/DorotheaVengefulVictim.java index dd2319d0ce4..c41dfd68ebf 100644 --- a/Mage.Sets/src/mage/cards/d/DorotheaVengefulVictim.java +++ b/Mage.Sets/src/mage/cards/d/DorotheaVengefulVictim.java @@ -40,8 +40,6 @@ public final class DorotheaVengefulVictim extends TransformingDoubleFacedCard { new AtTheEndOfCombatDelayedTriggeredAbility(new SacrificeSourceEffect()) ).setText("sacrifice it at end of combat"), false)); - // Disturb {1}{W}{U} - this.getLeftHalfCard().addAbility(new DisturbAbility(this, "{1}{W}{U}")); // Dorothea's Retribution // Enchant creature @@ -50,6 +48,10 @@ public final class DorotheaVengefulVictim extends TransformingDoubleFacedCard { this.getRightHalfCard().getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature)); this.getRightHalfCard().addAbility(new EnchantAbility(auraTarget)); + // Disturb {1}{W}{U} + // needs to be added after right half has spell ability target set + this.getLeftHalfCard().addAbility(new DisturbAbility(this, "{1}{W}{U}")); + // Enchanted creature has "Whenever this creature attacks, create a 4/4 white Spirit creature token with flying that's tapped and attacking. Sacrifice that token at end of combat." this.getRightHalfCard().addAbility(new SimpleStaticAbility(new GainAbilityAttachedEffect( new mage.abilities.common.AttacksTriggeredAbility(new DorotheasRetributionEffect()).setTriggerPhrase("Whenever this creature attacks, "),