- "Fall of Free Peoples" now correctly requires to exert a SAURON Orc.

This commit is contained in:
marcins78
2013-03-13 15:17:15 +00:00
parent 69d209d24b
commit 2bbd72554f
2 changed files with 4 additions and 0 deletions

View File

@@ -14,6 +14,7 @@
- "Ulaire Cantea, Morgul Predator"'s trigger is now an optional one (power-level adjustment). - "Ulaire Cantea, Morgul Predator"'s trigger is now an optional one (power-level adjustment).
- "Farin, Dwarf of Erebor" no longer has the extra activated ability of the old version. - "Farin, Dwarf of Erebor" no longer has the extra activated ability of the old version.
- "Goblin Howler" now gets the strength bonus, when a minion is played from condition, not the played minion. - "Goblin Howler" now gets the strength bonus, when a minion is played from condition, not the played minion.
- "Fall of Free Peoples" now correctly requires to exert a SAURON Orc.
<b>12 Mar. 2013</b> <b>12 Mar. 2013</b>
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul. - "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.

View File

@@ -4,6 +4,7 @@ import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions; import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction; import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.AddUntilStartOfPhaseModifierEffect; import com.gempukku.lotro.cards.effects.AddUntilStartOfPhaseModifierEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.cards.modifiers.FPCulturesSpotCountModifier; import com.gempukku.lotro.cards.modifiers.FPCulturesSpotCountModifier;
import com.gempukku.lotro.common.Culture; import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase; import com.gempukku.lotro.common.Phase;
@@ -32,6 +33,8 @@ public class Card20_356 extends AbstractEvent {
@Override @Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) { public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayEventAction action = new PlayEventAction(self); PlayEventAction action = new PlayEventAction(self);
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Culture.SAURON, Race.ORC));
action.appendEffect( action.appendEffect(
new AddUntilStartOfPhaseModifierEffect( new AddUntilStartOfPhaseModifierEffect(
new FPCulturesSpotCountModifier(self, playerId, -1), Phase.REGROUP)); new FPCulturesSpotCountModifier(self, playerId, -1), Phase.REGROUP));