From 656c5ed326ecbc856c8a98103d73c0dba8ea1b47 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Mon, 1 Jul 2024 13:09:45 +0400 Subject: [PATCH] Howltooth Hollow - added card hint --- Mage.Sets/src/mage/cards/h/HowltoothHollow.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/h/HowltoothHollow.java b/Mage.Sets/src/mage/cards/h/HowltoothHollow.java index c4a8bdecdf5..7052465725b 100644 --- a/Mage.Sets/src/mage/cards/h/HowltoothHollow.java +++ b/Mage.Sets/src/mage/cards/h/HowltoothHollow.java @@ -9,6 +9,8 @@ import mage.abilities.costs.common.TapSourceCost; import mage.abilities.costs.mana.ManaCostsImpl; import mage.abilities.decorator.ConditionalOneShotEffect; import mage.abilities.effects.common.HideawayPlayEffect; +import mage.abilities.hint.ConditionHint; +import mage.abilities.hint.Hint; import mage.abilities.keyword.HideawayAbility; import mage.abilities.mana.BlackManaAbility; import mage.cards.CardImpl; @@ -25,7 +27,8 @@ import java.util.UUID; public final class HowltoothHollow extends CardImpl { private static final Condition condition - = new CardsInHandCondition(ComparisonType.EQUAL_TO, 0, null, TargetController.ANY); + = new CardsInHandCondition(ComparisonType.EQUAL_TO, 0, null, TargetController.EACH_PLAYER); + private static final Hint hint = new ConditionHint(condition, "Each player has no cards in hand"); public HowltoothHollow(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.LAND}, ""); @@ -43,6 +46,7 @@ public final class HowltoothHollow extends CardImpl { "without paying its mana cost if each player has no cards in hand" ), new ManaCostsImpl<>("{B}")); ability.addCost(new TapSourceCost()); + ability.addHint(hint); this.addAbility(ability); }