"No Living Man"

This commit is contained in:
marcins78@gmail.com
2011-11-14 23:14:41 +00:00
parent 0117366f4e
commit 54b68df2ae

View File

@@ -0,0 +1,42 @@
package com.gempukku.lotro.cards.set8.rohan;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
/**
* Set: Siege of Gondor
* Side: Free
* Culture: Rohan
* Twilight Cost: 2
* Type: Event • Skirmish
* Game Text: Exert Theoden to exert a minion for each Theoden signet you spot.
*/
public class Card8_090 extends AbstractEvent {
public Card8_090() {
super(Side.FREE_PEOPLE, 2, Culture.ROHAN, "No Living Man", Phase.SKIRMISH);
}
@Override
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
return super.checkPlayRequirements(playerId, game, self, twilightModifier, ignoreRoamingPenalty)
&& PlayConditions.canExert(self, game, Filters.name("Theoden"));
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayEventAction action = new PlayEventAction(self);
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Filters.name("Theoden")));
int count = Filters.countSpottable(game.getGameState(), game.getModifiersQuerying(), CardType.COMPANION, Signet.THÉODEN);
for (int i = 0; i < count; i++)
action.appendEffect(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, CardType.MINION));
return action;
}
}