- "Terrible and Evil" now requires to exert at least once.

This commit is contained in:
marcins78
2013-09-05 15:07:55 +00:00
parent 017d4ed6ba
commit cff34857f1
2 changed files with 5 additions and 2 deletions

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>5 Sep. 2013</b>
- "Terrible and Evil" now requires to exert at least once.
<b>21 Jul. 2013</b>
- Only two daily tournaments per day (one for EU, one for US).
- Dropping prize support for Daily tournaments to Top 4 competitors.

View File

@@ -39,10 +39,10 @@ public class Card7_050 extends AbstractEvent {
@Override
public PlayEventAction getPlayCardAction(final String playerId, LotroGame game, final PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
final PlayEventAction action = new PlayEventAction(self);
int vitality = game.getModifiersQuerying().getVitality(game.getGameState(), Filters.findFirstActive(game.getGameState(), game.getModifiersQuerying(), Filters.gandalf));
int vitality = game.getModifiersQuerying().getVitality(game.getGameState(), Filters.findFirstActive(game.getGameState(), game.getModifiersQuerying(), Filters.gandalf, Filters.canExert(self)));
action.appendCost(
new PlayoutDecisionEffect(playerId,
new IntegerAwaitingDecision(1, "Choose how many times you wish to exert Gandalf", 0, vitality - 1) {
new IntegerAwaitingDecision(1, "Choose how many times you wish to exert Gandalf", 1, vitality - 1) {
@Override
public void decisionMade(String result) throws DecisionResultInvalidException {
int exertCount = getValidatedResult(result);