- "Numenor's Pride" now adds 3 threats when played.
This commit is contained in:
@@ -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>();
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user