- "Open War" now adds +2 strength, instead of +1 (per card text).

This commit is contained in:
marcins78
2013-03-12 11:36:00 +00:00
parent 9f15db9a42
commit 5c0a06c8db
2 changed files with 4 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ perform a next move (per card text).
abilities.
- "Orthanc Strategist" has now 3 vitality (per card text).
- "Mithril Coat, A Kingly Gift" no longer grants strength bonus (per card text).
- "Open War" now adds +2 strength, instead of +1 (per card text).
<b>11 Mar. 2013</b>
- Second Edition is playable now.

View File

@@ -4,6 +4,7 @@ import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.cards.modifiers.evaluator.CountActiveEvaluator;
import com.gempukku.lotro.cards.modifiers.evaluator.MultiplyEvaluator;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
@@ -26,7 +27,8 @@ public class Card20_229 extends AbstractEvent {
PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId,
new CountActiveEvaluator(CardType.SITE, Keyword.BATTLEGROUND, Filters.region(GameUtils.getRegion(game.getGameState()))), Race.URUK_HAI));
new MultiplyEvaluator(2,
new CountActiveEvaluator(CardType.SITE, Keyword.BATTLEGROUND, Filters.region(GameUtils.getRegion(game.getGameState())))), Race.URUK_HAI));
return action;
}
}