- "So Polite" now counts the threats when it resolves.

This commit is contained in:
marcins78
2013-03-04 11:31:47 +00:00
parent 18006690a9
commit 3c71eac3e7
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>4 Mar. 2013</b>
- "Elrond", "Herald to Gil-galad" now gives an option, on how many times you wish to heal that ally.
- "So Polite" now counts the threats when it resolves.
<b>20 Feb. 2013</b>
- Corruption check at the beginning of the game (after bidding) now takes into account all resistance modifiers.

View File

@@ -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.choose.ChooseAndPlayCardFromDiscardEffect;
import com.gempukku.lotro.cards.modifiers.evaluator.ForEachThreatEvaluator;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Side;
@@ -36,9 +37,8 @@ public class Card7_074 extends AbstractEvent {
PlayEventAction action = new PlayEventAction(self);
action.appendCost(
new ChooseAndPlayCardFromDiscardEffect(playerId, game, Filters.gollum));
int threats = game.getGameState().getThreats();
action.appendEffect(
new AddTwilightEffect(self, threats));
new AddTwilightEffect(self, new ForEachThreatEvaluator()));
return action;
}
}