- "Lothlorien" correctly requires to spot 2 elves, instead of just one to remove the burden.

This commit is contained in:
marcins78
2013-03-15 17:25:17 +00:00
parent 910624bece
commit 95494d4be8
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>15 Mar. 2013</b>
- "Lothlorien" correctly requires to spot 2 elves, instead of just one to remove the burden.
<b>14 Mar. 2013</b>
- "Into the Wild" now increases site number only based on sites in current region (per card text).
- "To Whatever End" is now a Skirmish event, instead of Regroup event (per card text).

View File

@@ -33,7 +33,7 @@ public class Card20_433 extends AbstractSite {
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.movesTo(game, effectResult, self)
&& GameUtils.isFP(game, playerId)
&& PlayConditions.canSpot(game, Race.ELF)) {
&& PlayConditions.canSpot(game, 2, Race.ELF)) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
action.appendEffect(
new RemoveBurdenEffect(playerId, self, 1));