"Beyond the Height of Men"

This commit is contained in:
marcins78@gmail.com
2011-09-27 12:37:44 +00:00
parent 22ef6cc1c6
commit f711f93fa7

View File

@@ -0,0 +1,67 @@
package com.gempukku.lotro.cards.set2.isengard;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.costs.ChooseAndExertCharactersCost;
import com.gempukku.lotro.cards.effects.ChooseAndDiscardCardsFromPlayEffect;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.effects.DiscardCardsFromPlayEffect;
/**
* Set: Mines of Moria
* Side: Shadow
* Culture: Isengard
* Twilight Cost: 2
* Type: Event
* Game Text: Maneuver: Exert an Uruk-hai to discard an armor possession, helm possession, or shield possession (or all
* such Free Peoples possessions if you can spot 6 companions).
*/
public class Card2_039 extends AbstractEvent {
public Card2_039() {
super(Side.SHADOW, Culture.ISENGARD, "Beyond the Height of Men", Phase.MANEUVER);
}
@Override
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
return super.checkPlayRequirements(playerId, game, self, twilightModifier)
&& Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), Filters.race(Race.URUK_HAI), Filters.canExert());
}
@Override
public int getTwilightCost() {
return 2;
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
PlayEventAction action = new PlayEventAction(self);
action.appendCost(
new ChooseAndExertCharactersCost(action, playerId, 1, 1, Filters.race(Race.URUK_HAI)));
int companions = Filters.countActive(game.getGameState(), game.getModifiersQuerying(), Filters.type(CardType.COMPANION));
if (companions >= 6)
action.appendEffect(
new DiscardCardsFromPlayEffect(self,
Filters.and(
Filters.side(Side.FREE_PEOPLE),
Filters.type(CardType.POSSESSION),
Filters.or(
Filters.keyword(Keyword.ARMOR),
Filters.keyword(Keyword.HELM),
Filters.keyword(Keyword.SHIELD)
))));
else
action.appendEffect(
new ChooseAndDiscardCardsFromPlayEffect(
action, playerId, 1, 1,
Filters.type(CardType.POSSESSION),
Filters.or(
Filters.keyword(Keyword.ARMOR),
Filters.keyword(Keyword.HELM),
Filters.keyword(Keyword.SHIELD)
)));
return action;
}
}