- "Numenor's Pride" now adds 3 threats when played.

This commit is contained in:
marcins78@gmail.com
2012-03-03 10:13:05 +00:00
parent 2e49979334
commit 619fff6330
2 changed files with 11 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ package com.gempukku.lotro.cards.set7.gandalf;
import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.actions.PlayPermanentAction;
import com.gempukku.lotro.cards.effects.SelfDiscardEffect;
import com.gempukku.lotro.cards.modifiers.CantTakeWoundsModifier;
import com.gempukku.lotro.common.*;
@@ -10,6 +11,7 @@ import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.RequiredTriggerAction;
import com.gempukku.lotro.logic.effects.AddThreatsEffect;
import com.gempukku.lotro.logic.modifiers.KeywordModifier;
import com.gempukku.lotro.logic.modifiers.Modifier;
import com.gempukku.lotro.logic.timing.EffectResult;
@@ -39,6 +41,14 @@ public class Card7_045 extends AbstractPermanent {
&& PlayConditions.canAddThreat(game, self, 3);
}
@Override
public PlayPermanentAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayPermanentAction action = super.getPlayCardAction(playerId, game, self, twilightModifier, ignoreRoamingPenalty);
action.appendCost(
new AddThreatsEffect(playerId, self, 3));
return action;
}
@Override
public List<? extends Modifier> getAlwaysOnModifiers(LotroGame game, PhysicalCard self) {
List<Modifier> modifiers = new LinkedList<Modifier>();

View File

@@ -2,6 +2,7 @@
<b>3 Mar. 2012</b>
- "The Palantir of Orthanc, Recovered Seeing Stone" should no longer discard itself.
- "With All Possible Speed" can be played in skirmish phase only.
- "Numenor's Pride" now adds 3 threats when played.
<b>29 Feb. 2012</b>
- "Get Off the Road!" now discards cards from Free People player's deck.