diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html index e64c6af59..7df692ed1 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html @@ -1,18 +1,37 @@
Most recent update
+- Added "The Clouds Burst" Expansion for The Hobbit Draft game
+- "Final Cry" should now work if The Balrog is discarded or killed in a skirmish
+- "Anything goes" format now allows for sites from Fellowship or King blocks in addition to Towers block
+- "Army Long Trained" no longer blocks the decision pop-up with a link to the card
+
+21 Aug. 2019
+- Second Edition "Grace of Valar" is now properly a spell
+- Reworked actions with phase limits
+
+18 Aug. 2019
+- Second Edition cards no longer allow a player to exert an exhausted character
+- Second Edition "Bag End" now properly adds strength until the end of turn
+
+15 Aug. 2019
+- Corrected an error which prevented spectating players from participating in game chat
+- Added hours to the game clock
+- Revealed cards now appear in a pop-up
+- More refactoring
+- Reworked some problem Second Edition cards
+- Many Second Edition bug fixes
+
+10 Aug. 2019
- Increased Slow game speed decision timeout to 10 minutes
- Fixed an issue where iPhone/iPad users could not create a table
-- Corrected Second Edition images
- Additonal refactoring
- "Faramir's Bow, Ithilien Longbow" now properly exhausts a minion Faramir is skirmishing
-- Second Edition "Gathering Evil" and "The Palantir of Orthanc, Corruptor of Wizards" are now properly unique
8 Aug. 2019
- Added Second Edition!
- Added game timer options
- Corrected another Draft League issue
- Players can no longer spectate League games
-- Spectating players can no participate in game chat
- Code refactoring
- "Grousing Hillman" is now properly strength +3 while you control a site
@@ -31,7 +50,7 @@
- "Saved from the Fire" can no longer target the Ring-Bearer
- "Throne of the Golden Hall" no longer allows a character to prevent its own wound by exerting
- "Tower Troll" now has the correct prevention pop-up text
-- "Uruk Guard" and "Uruk-hai Guard" now announce the selected companion in chat
+- "Uruk Guard" and "Uruk-hai Guard" now announces the selected companion in chat
- "Shelob, Her Ladyship" now announces the selected companion in chat
- "Safe Passage" now announces the selected keyword in chat
- "Saruman, Of Many Colours" now announces the selected culture in chat
diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set19/elven/Card19_005.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set19/elven/Card19_005.java
index b67fb7f53..d1a38dc62 100644
--- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set19/elven/Card19_005.java
+++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set19/elven/Card19_005.java
@@ -66,7 +66,12 @@ return Collections.singletonList(new StrengthModifier(self, Filters.hasAttached(
possibleEffects.add(
new ExertCharactersEffect(action, self, self.getAttachedTo()));
possibleEffects.add(
- new ReturnCardsToHandEffect(self, self));
+ new ReturnCardsToHandEffect(self, self) {
+ @Override
+ public String getText(LotroGame game) {
+ return "Return this condition to hand";
+ }
+ });
action.appendEffect(
new ChoiceEffect(action, self.getOwner(), possibleEffects));
return Collections.singletonList(action);
diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/lotrFormats.json b/gemp-lotr/gemp-lotr-server/src/main/resources/lotrFormats.json
index a896d10ca..2bd3c1031 100644
--- a/gemp-lotr/gemp-lotr-server/src/main/resources/lotrFormats.json
+++ b/gemp-lotr/gemp-lotr-server/src/main/resources/lotrFormats.json
@@ -85,7 +85,7 @@
{
"name": "Anything goes",
"code":"rev_tow_sta",
- "sites":"TWO_TOWERS",
+ "sites":"SPECIAL",
"cancelRingBearerSkirmish":true,
"set":[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
},