diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set15/men/Card15_084.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set15/men/Card15_084.java new file mode 100644 index 000000000..70cdb417e --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set15/men/Card15_084.java @@ -0,0 +1,40 @@ +package com.gempukku.lotro.cards.set15.men; + +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.ChooseAndExhaustCharactersEffect; +import com.gempukku.lotro.common.*; +import com.gempukku.lotro.game.PhysicalCard; +import com.gempukku.lotro.game.state.LotroGame; +import com.gempukku.lotro.logic.effects.ChooseAndWoundCharactersEffect; + +/** + * Set: The Hunters + * Side: Shadow + * Culture: Men + * Twilight Cost: 3 + * Type: Event • Archery + * Game Text: Wound 3 [MEN] archers to exhaust a companion. + */ +public class Card15_084 extends AbstractEvent { + public Card15_084() { + super(Side.SHADOW, 3, Culture.MEN, "Last Gasp", Phase.ARCHERY); + } + + @Override + public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int withTwilightRemoved, int twilightModifier, boolean ignoreRoamingPenalty, boolean ignoreCheckingDeadPile) { + return super.checkPlayRequirements(playerId, game, self, withTwilightRemoved, twilightModifier, ignoreRoamingPenalty, ignoreCheckingDeadPile) + && PlayConditions.canWound(self, game, 1, 3, Culture.MEN, Keyword.ARCHER); + } + + @Override + public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) { + PlayEventAction action = new PlayEventAction(self); + action.appendCost( + new ChooseAndWoundCharactersEffect(action, playerId, 3, 3, Culture.MEN, Keyword.ARCHER)); + action.appendEffect( + new ChooseAndExhaustCharactersEffect(action, playerId, 1, 1, CardType.COMPANION)); + return action; + } +}