From 16e3b2502470bffba0ec67ff82e8fcf19a579e7e Mon Sep 17 00:00:00 2001 From: theelk801 Date: Thu, 11 Dec 2025 15:57:40 -0500 Subject: [PATCH] fix verify failure --- Mage.Sets/src/mage/cards/i/InvisibleWoman.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/cards/i/InvisibleWoman.java b/Mage.Sets/src/mage/cards/i/InvisibleWoman.java index 02505d6cc09..a2939873956 100644 --- a/Mage.Sets/src/mage/cards/i/InvisibleWoman.java +++ b/Mage.Sets/src/mage/cards/i/InvisibleWoman.java @@ -18,6 +18,7 @@ import mage.constants.CardType; import mage.constants.SubType; import mage.constants.SuperType; import mage.game.permanent.token.WallColorlessReachToken; +import mage.target.common.TargetCreaturePermanent; import java.util.UUID; @@ -45,6 +46,7 @@ public final class InvisibleWoman extends CardImpl { new BoostTargetEffect(CreaturesYouControlCount.SINGULAR, StaticValue.get(0)), false ); ability.addEffect(new CantBeBlockedTargetEffect().setText("and can't be blocked this turn")); + ability.addTarget(new TargetCreaturePermanent()); this.addAbility(new AttacksWithCreaturesTriggeredAbility(new DoWhenCostPaid( ability, new ManaCostsImpl<>("{R}{G}{W}{U}"), "Pay {R}{G}{W}{U}?" ), 1));