"Forces of Mordor"

This commit is contained in:
marcins78@gmail.com
2011-09-10 15:29:02 +00:00
parent 0f964e38de
commit cfe62252b1

View File

@@ -0,0 +1,40 @@
package com.gempukku.lotro.cards.set1.sauron;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.AddTwilightEffect;
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.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
/**
* Set: The Fellowship of the Ring
* Side: Shadow
* Culture: Sauron
* Twilight Cost: 0
* Type: Event
* Game Text: Shadow: Spot X [SAURON] minions to add (X).
*/
public class Card1_248 extends AbstractEvent {
public Card1_248() {
super(Side.SHADOW, Culture.SAURON, "Forces of Mordor", Phase.SHADOW);
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
PlayEventAction action = new PlayEventAction(self);
int sauronMinions = Filters.countActive(game.getGameState(), game.getModifiersQuerying(), Filters.culture(Culture.SAURON), Filters.type(CardType.MINION));
action.addEffect(
new AddTwilightEffect(sauronMinions));
return action;
}
@Override
public int getTwilightCost() {
return 0;
}
}