diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set7/gondor/Card7_117.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set7/gondor/Card7_117.java new file mode 100644 index 000000000..1e06e5f2d --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set7/gondor/Card7_117.java @@ -0,0 +1,79 @@ +package com.gempukku.lotro.cards.set7.gondor; + +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.ChoiceEffect; +import com.gempukku.lotro.cards.effects.LiberateASiteEffect; +import com.gempukku.lotro.cards.effects.SpotEffect; +import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardCardsFromHandEffect; +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; +import com.gempukku.lotro.logic.timing.Effect; + +import java.util.LinkedList; +import java.util.List; + +/** + * Set: The Return of the King + * Side: Free + * Culture: Gondor + * Twilight Cost: 1 + * Type: Event + * Game Text: Spot 2 knights or exert 2 [GONDOR] Men to liberate a site or discard any number of cards from hand. + */ +public class Card7_117 extends AbstractEvent { + public Card7_117() { + super(Side.FREE_PEOPLE, 1, Culture.GONDOR, "Reckless Counter", Phase.REGROUP); + } + + @Override + public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) { + return super.checkPlayRequirements(playerId, game, self, twilightModifier) + && (PlayConditions.canSpot(game, 2, Keyword.KNIGHT) || PlayConditions.canExertMultiple(self, game, 1, 2, Culture.GONDOR, Race.MAN)); + } + + @Override + public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) { + PlayEventAction action = new PlayEventAction(self); + List possibleCosts = new LinkedList(); + possibleCosts.add( + new SpotEffect(2, Keyword.KNIGHT) { + @Override + public String getText(LotroGame game) { + return "Spot 2 knights"; + } + }); + possibleCosts.add( + new ChooseAndExertCharactersEffect(action, playerId, 2, 2, Culture.GONDOR, Race.MAN) { + @Override + public String getText(LotroGame game) { + return "Exert 2 GONDOR Men"; + } + }); + action.appendCost( + new ChoiceEffect(action, playerId, possibleCosts)); + + List possibleEffects = new LinkedList(); + possibleEffects.add( + new LiberateASiteEffect(self) { + @Override + public String getText(LotroGame game) { + return "Liberate a site"; + } + }); + possibleEffects.add( + new ChooseAndDiscardCardsFromHandEffect(action, playerId, false, 0, Integer.MAX_VALUE, Filters.any) { + @Override + public String getText(LotroGame game) { + return "Discard any number of cards from hand"; + } + }); + action.appendEffect( + new ChoiceEffect(action, playerId, possibleEffects)); + return action; + } +}