diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set3/gondor/Card3_043.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set3/gondor/Card3_043.java new file mode 100644 index 000000000..09689e0f1 --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set3/gondor/Card3_043.java @@ -0,0 +1,64 @@ +package com.gempukku.lotro.cards.set3.gondor; + +import com.gempukku.lotro.cards.AbstractEvent; +import com.gempukku.lotro.cards.actions.PlayEventAction; +import com.gempukku.lotro.cards.effects.ChooseAndHealCharactersEffect; +import com.gempukku.lotro.cards.effects.ChooseOpponentEffect; +import com.gempukku.lotro.cards.effects.RevealRandomCardsFromHandEffect; +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 java.util.List; + +/** + * Set: Realms of Elf-lords + * Side: Free + * Culture: Gondor + * Twilight Cost: 1 + * Type: Event + * Game Text: Tale. Maneuver: Spot a [GONDOR] companion to reveal a card at random from an opponent's hand. Heal + * X companions, where X is the twilight cost of the card revealed. + */ +public class Card3_043 extends AbstractEvent { + public Card3_043() { + super(Side.FREE_PEOPLE, Culture.GONDOR, "Might of Numenor", Phase.MANEUVER); + addKeyword(Keyword.TALE); + } + + @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.culture(Culture.GONDOR), Filters.type(CardType.COMPANION)); + } + + @Override + public int getTwilightCost() { + return 1; + } + + @Override + public PlayEventAction getPlayCardAction(final String playerId, LotroGame game, PhysicalCard self, int twilightModifier) { + final PlayEventAction action = new PlayEventAction(self); + action.appendEffect( + new ChooseOpponentEffect(playerId) { + @Override + protected void opponentChosen(String opponentId) { + action.insertEffect( + new RevealRandomCardsFromHandEffect(opponentId, 1) { + @Override + protected void cardsRevealed(List revealedCards) { + if (revealedCards.size() > 0) { + PhysicalCard revealedCard = revealedCards.get(0); + int twilightCost = revealedCard.getBlueprint().getTwilightCost(); + action.appendEffect( + new ChooseAndHealCharactersEffect(action, playerId, twilightCost, twilightCost, Filters.type(CardType.COMPANION))); + } + } + }); + } + }); + return action; + } +}