From 277891893c8db2651f27bfd2b830ab29b20b9b1d Mon Sep 17 00:00:00 2001 From: Phallen Cassidy Date: Sat, 28 Mar 2020 13:56:46 -0400 Subject: [PATCH] Fix to 1U153 "Uruk Slayer" Ability should be usable any number of times, but strength gain still limited to 3 --- .../main/web/cards/set1/set1-isengard.json | 23 ++++++++----------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/cards/set1/set1-isengard.json b/gemp-lotr/gemp-lotr-async/src/main/web/cards/set1/set1-isengard.json index bf2c9ab37..1d9d880d0 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/cards/set1/set1-isengard.json +++ b/gemp-lotr/gemp-lotr-async/src/main/web/cards/set1/set1-isengard.json @@ -958,23 +958,18 @@ "effects": { "type": "activated", "phase": "skirmish", - "condition": { - "type": "perPhaseLimit", - "limit": 3 + "cost": { + "type": "removeTwilight" }, - "cost": [ - { - "type": "incrementPerPhaseLimit", - "limit": 3 - }, - { - "type": "removeTwilight" - } - ], "effect": { "type": "modifyStrength", "filter": "self", - "amount": 1 + "amount": { + "type": "cardAffectedLimitPerPhase", + "prefix": "str-", + "source": 1, + "limit": 3 + } } } }, @@ -1232,4 +1227,4 @@ } ] } -} \ No newline at end of file +}