From 1a93fe97c47ca36f93803eccfa598cf21072ac03 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sat, 22 Feb 2025 20:16:31 +0400 Subject: [PATCH] Volcanic Torrent - added card hint --- Mage.Sets/src/mage/cards/v/VolcanicTorrent.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/cards/v/VolcanicTorrent.java b/Mage.Sets/src/mage/cards/v/VolcanicTorrent.java index 752d57cb648..23e032c9579 100644 --- a/Mage.Sets/src/mage/cards/v/VolcanicTorrent.java +++ b/Mage.Sets/src/mage/cards/v/VolcanicTorrent.java @@ -4,6 +4,7 @@ import mage.abilities.Ability; import mage.abilities.dynamicvalue.DynamicValue; import mage.abilities.effects.Effect; import mage.abilities.effects.common.DamageAllEffect; +import mage.abilities.hint.ValueHint; import mage.abilities.keyword.CascadeAbility; import mage.cards.CardImpl; import mage.cards.CardSetInfo; @@ -36,6 +37,7 @@ public final class VolcanicTorrent extends CardImpl { // Volcanic Torrent deals X damage to each creature and planeswalker your opponents control, where X is the number of spells you've cast this turn. this.getSpellAbility().addEffect(new DamageAllEffect(VolcanicTorrentValue.instance, filter)); + this.getSpellAbility().addHint(new ValueHint("Number of spells you've cast this turn", VolcanicTorrentValue.instance)); } private VolcanicTorrent(final VolcanicTorrent card) {