From 2bbd72554fc2602e2e984532e759bd8794de6a33 Mon Sep 17 00:00:00 2001 From: marcins78 Date: Wed, 13 Mar 2013 15:17:15 +0000 Subject: [PATCH] - "Fall of Free Peoples" now correctly requires to exert a SAURON Orc. --- gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html | 1 + .../java/com/gempukku/lotro/cards/set20/sauron/Card20_356.java | 3 +++ 2 files changed, 4 insertions(+) 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 65cc8e68b..84dd0e715 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 @@ -14,6 +14,7 @@ - "Ulaire Cantea, Morgul Predator"'s trigger is now an optional one (power-level adjustment). - "Farin, Dwarf of Erebor" no longer has the extra activated ability of the old version. - "Goblin Howler" now gets the strength bonus, when a minion is played from condition, not the played minion. +- "Fall of Free Peoples" now correctly requires to exert a SAURON Orc. 12 Mar. 2013 - "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul. diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/sauron/Card20_356.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/sauron/Card20_356.java index b0a90761b..f2a08543f 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/sauron/Card20_356.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/sauron/Card20_356.java @@ -4,6 +4,7 @@ import com.gempukku.lotro.cards.AbstractEvent; import com.gempukku.lotro.cards.PlayConditions; import com.gempukku.lotro.cards.actions.PlayEventAction; import com.gempukku.lotro.cards.effects.AddUntilStartOfPhaseModifierEffect; +import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect; import com.gempukku.lotro.cards.modifiers.FPCulturesSpotCountModifier; import com.gempukku.lotro.common.Culture; import com.gempukku.lotro.common.Phase; @@ -32,6 +33,8 @@ public class Card20_356 extends AbstractEvent { @Override public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) { PlayEventAction action = new PlayEventAction(self); + action.appendCost( + new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Culture.SAURON, Race.ORC)); action.appendEffect( new AddUntilStartOfPhaseModifierEffect( new FPCulturesSpotCountModifier(self, playerId, -1), Phase.REGROUP));