From 2aa639a3d8f7f962405747eb29e71d6ed64648f3 Mon Sep 17 00:00:00 2001 From: Christian 'ketura' McCarty Date: Fri, 1 Nov 2024 22:56:54 -0500 Subject: [PATCH] Restoring ability for HTGG to heal "up to" 2 times --- .../cards/official/set03/set3-elven.hjson | 26 +++++++++++++++---- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/gemp-lotr/gemp-lotr-cards/src/main/resources/cards/official/set03/set3-elven.hjson b/gemp-lotr/gemp-lotr-cards/src/main/resources/cards/official/set03/set3-elven.hjson index 822411fec..c5f10dc8a 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/resources/cards/official/set03/set3-elven.hjson +++ b/gemp-lotr/gemp-lotr-cards/src/main/resources/cards/official/set03/set3-elven.hjson @@ -208,11 +208,27 @@ trigger: { type: startOfTurn } - effect: { - type: heal - select: choose(ally,allyHome(Fellowship,3)) - times: 2 - } + effect: [ + { + type: ChooseActiveCards + text: Choose an ally to heal up to 2 times + select: choose(ally,allyHome(Fellowship,3)) + memorize: healingAlly + } + { + type: ChooseANumber + text: Choose how many times to heal {healingAlly} + from: 0 + to: 2 + memorize: healing + } + { + type: heal + select: choose(ally,allyHome(Fellowship,3)) + times: memory(healing) + } + ] + } { type: activated