From 3225fb00d92471a5a00a7cf90b16a4693a4c7005 Mon Sep 17 00:00:00 2001 From: PurpleCrowbar <26198472+PurpleCrowbar@users.noreply.github.com> Date: Sun, 18 May 2025 23:16:51 +0100 Subject: [PATCH] Add hint to Zedruu the Greathearted --- Mage.Sets/src/mage/cards/z/ZedruuTheGreathearted.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/z/ZedruuTheGreathearted.java b/Mage.Sets/src/mage/cards/z/ZedruuTheGreathearted.java index a61dbd79441..e04c58dd0d5 100644 --- a/Mage.Sets/src/mage/cards/z/ZedruuTheGreathearted.java +++ b/Mage.Sets/src/mage/cards/z/ZedruuTheGreathearted.java @@ -2,6 +2,7 @@ package mage.cards.z; import mage.MageInt; import mage.abilities.Ability; +import mage.abilities.hint.ValueHint; import mage.abilities.triggers.BeginningOfUpkeepTriggeredAbility; import mage.abilities.common.SimpleActivatedAbility; import mage.abilities.costs.mana.ManaCostsImpl; @@ -38,7 +39,7 @@ public final class ZedruuTheGreathearted extends CardImpl { effect = new DrawCardSourceControllerEffect(PermanentsYouOwnThatOpponentsControlCount.instance); effect.setText("and draw X cards, where X is the number of permanents you own that your opponents control"); ability.addEffect(effect); - this.addAbility(ability); + this.addAbility(ability.addHint(new ValueHint("Permanents you own that your opponents control", PermanentsYouOwnThatOpponentsControlCount.instance))); // {R}{W}{U}: Target opponent gains control of target permanent you control. ability = new SimpleActivatedAbility(new TargetPlayerGainControlTargetPermanentEffect(), new ManaCostsImpl<>("{U}{R}{W}"));