"Threat of Mordor"

This commit is contained in:
marcins78
2013-02-07 16:35:25 +00:00
parent 80fe38c338
commit 47ee3959cc

View File

@@ -0,0 +1,33 @@
package com.gempukku.lotro.cards.set20.sauron;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.cards.modifiers.evaluator.ForEachThreatEvaluator;
import com.gempukku.lotro.common.CardType;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
/**
* 2
* Threat of Mordor
* Sauron Event • Skirmish
* Make a [Sauron] minion strength +1 for each threat.
*/
public class Card20_375 extends AbstractEvent {
public Card20_375() {
super(Side.SHADOW, 2, Culture.SAURON, "Threat of Mordor", Phase.SKIRMISH);
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId,
new ForEachThreatEvaluator(), Culture.SAURON, CardType.MINION));
return action;
}
}