diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set15/elven/Card15_023.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set15/elven/Card15_023.java new file mode 100644 index 000000000..51a7adf39 --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set15/elven/Card15_023.java @@ -0,0 +1,34 @@ +package com.gempukku.lotro.cards.set15.elven; + +import com.gempukku.lotro.cards.AbstractEvent; +import com.gempukku.lotro.cards.actions.PlayEventAction; +import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect; +import com.gempukku.lotro.cards.modifiers.evaluator.ConditionEvaluator; +import com.gempukku.lotro.common.*; +import com.gempukku.lotro.game.PhysicalCard; +import com.gempukku.lotro.game.state.LotroGame; +import com.gempukku.lotro.logic.modifiers.SpotCondition; + +/** + * Set: The Hunters + * Side: Free + * Culture: Elven + * Twilight Cost: 1 + * Type: Event • Skirmish + * Game Text: Make an Elf strength +2 (or +4 if you can spot 3 archers). + */ +public class Card15_023 extends AbstractEvent { + public Card15_023() { + super(Side.FREE_PEOPLE, 1, Culture.ELVEN, "Point Blank Range", Phase.SKIRMISH); + } + + @Override + public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) { + PlayEventAction action = new PlayEventAction(self); + action.appendEffect( + new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId, + new ConditionEvaluator(2, 4, + new SpotCondition(3, Keyword.ARCHER)), Race.ELF)); + return action; + } +}