diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/gandalf/Card1_080.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/gandalf/Card1_080.java new file mode 100644 index 000000000..10d6ad339 --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/gandalf/Card1_080.java @@ -0,0 +1,66 @@ +package com.gempukku.lotro.cards.set1.gandalf; + +import com.gempukku.lotro.cards.AbstractAlly; +import com.gempukku.lotro.cards.PlayConditions; +import com.gempukku.lotro.cards.effects.ExertCharacterEffect; +import com.gempukku.lotro.common.Culture; +import com.gempukku.lotro.common.Keyword; +import com.gempukku.lotro.common.Phase; +import com.gempukku.lotro.filters.Filters; +import com.gempukku.lotro.game.PhysicalCard; +import com.gempukku.lotro.game.state.LotroGame; +import com.gempukku.lotro.logic.actions.DefaultCostToEffectAction; +import com.gempukku.lotro.logic.effects.ChooseCardsFromHandEffect; +import com.gempukku.lotro.logic.effects.DiscardCardFromHandEffect; +import com.gempukku.lotro.logic.effects.DrawCardEffect; +import com.gempukku.lotro.logic.timing.Action; + +import java.util.Collections; +import java.util.List; + +/** + * Set: The Fellowship of the Ring + * Side: Free + * Culture: Gandalf + * Twilight Cost: 1 + * Type: Ally • Home 3 • Man + * Strength: 2 + * Vitality: 2 + * Site: 3 + * Game Text: To play, spot Gandalf. Fellowship: Exert Ottar to discard up to 3 cards from hand and draw an equal + * number of cards. + */ +public class Card1_080 extends AbstractAlly { + public Card1_080() { + super(1, 3, 2, 2, Culture.GANDALF, "Ottar", true); + addKeyword(Keyword.MAN); + } + + @Override + public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self) { + return super.checkPlayRequirements(playerId, game, self) + && Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), Filters.name("Gandalf")); + } + + @Override + protected List getExtraPhaseActions(final String playerId, LotroGame game, PhysicalCard self) { + if (PlayConditions.canUseFPCardDuringPhase(game.getGameState(), Phase.FELLOWSHIP, self) + && PlayConditions.canExert(game.getGameState(), game.getModifiersQuerying(), self)) { + final DefaultCostToEffectAction action = new DefaultCostToEffectAction(self, Keyword.FELLOWSHIP, "Exert Ottar to discard up to 3 cards from hand and draw an equal number of cards."); + action.addCost(new ExertCharacterEffect(self)); + action.addEffect( + new ChooseCardsFromHandEffect(playerId, "Choose cards to discard", 0, 3, Filters.any()) { + @Override + protected void cardsSelected(List selectedCards) { + for (PhysicalCard selectedCard : selectedCards) + action.addEffect(new DiscardCardFromHandEffect(selectedCard)); + + for (int i = 0; i < selectedCards.size(); i++) + action.addEffect(new DrawCardEffect(playerId)); + } + }); + return Collections.singletonList(action); + } + return null; + } +}