From 1c6bc19c9103b6a7ab00c9e0e23b2530c780e037 Mon Sep 17 00:00:00 2001 From: PhallenCassidy Date: Wed, 19 Mar 2025 23:22:05 -0400 Subject: [PATCH] Fix for Lavastone Giant --- .../hobbit/set33/set33-shadow.hjson | 55 ++++++++----------- 1 file changed, 23 insertions(+), 32 deletions(-) diff --git a/gemp-lotr/gemp-lotr-cards/src/main/resources/cards/unofficial/hobbit/set33/set33-shadow.hjson b/gemp-lotr/gemp-lotr-cards/src/main/resources/cards/unofficial/hobbit/set33/set33-shadow.hjson index 7ee789eac..243ec4d8b 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/resources/cards/unofficial/hobbit/set33/set33-shadow.hjson +++ b/gemp-lotr/gemp-lotr-cards/src/main/resources/cards/unofficial/hobbit/set33/set33-shadow.hjson @@ -1068,38 +1068,29 @@ memorize: revealedCard } { - type: choice - texts: [ - Make the Shadow archery total +2 - Exert this minion - ] - effects: [ - { - type: If - check: { - type: memoryMatches - memory: revealedCard - filter: side(shadow) - } - true: { - type: modifyArcheryTotal - side: shadow - amount: 2 - } - } - { - type: If - check: { - type: memoryMatches - memory: revealedCard - filter: side(free people) - } - true: { - type: exert - select: self - } - } - ] + type: If + check: { + type: memoryMatches + memory: revealedCard + filter: side(shadow) + } + true: { + type: modifyArcheryTotal + side: shadow + amount: 2 + } + } + { + type: If + check: { + type: memoryMatches + memory: revealedCard + filter: not(side(shadow)) + } + true: { + type: exert + select: self + } } ] }