- "Lothlorien" correctly requires to spot 2 elves, instead of just one to remove the burden.
This commit is contained in:
@@ -1,4 +1,7 @@
|
|||||||
<pre style="font-size:80%">
|
<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>
|
<b>14 Mar. 2013</b>
|
||||||
- "Into the Wild" now increases site number only based on sites in current region (per card text).
|
- "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).
|
- "To Whatever End" is now a Skirmish event, instead of Regroup event (per card text).
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ public class Card20_433 extends AbstractSite {
|
|||||||
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
|
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
|
||||||
if (TriggerConditions.movesTo(game, effectResult, self)
|
if (TriggerConditions.movesTo(game, effectResult, self)
|
||||||
&& GameUtils.isFP(game, playerId)
|
&& GameUtils.isFP(game, playerId)
|
||||||
&& PlayConditions.canSpot(game, Race.ELF)) {
|
&& PlayConditions.canSpot(game, 2, Race.ELF)) {
|
||||||
OptionalTriggerAction action = new OptionalTriggerAction(self);
|
OptionalTriggerAction action = new OptionalTriggerAction(self);
|
||||||
action.appendEffect(
|
action.appendEffect(
|
||||||
new RemoveBurdenEffect(playerId, self, 1));
|
new RemoveBurdenEffect(playerId, self, 1));
|
||||||
|
|||||||
Reference in New Issue
Block a user