diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set17/gandalf/Card17_016.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set17/gandalf/Card17_016.java new file mode 100644 index 000000000..0d38fd781 --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set17/gandalf/Card17_016.java @@ -0,0 +1,63 @@ +package com.gempukku.lotro.cards.set17.gandalf; + +import com.gempukku.lotro.cards.AbstractCompanion; +import com.gempukku.lotro.cards.PlayConditions; +import com.gempukku.lotro.cards.effects.PutCardFromDeckIntoHandEffect; +import com.gempukku.lotro.cards.effects.RevealTopCardsOfDrawDeckEffect; +import com.gempukku.lotro.cards.effects.SelfExertEffect; +import com.gempukku.lotro.cards.modifiers.evaluator.CountActiveEvaluator; +import com.gempukku.lotro.common.*; +import com.gempukku.lotro.game.PhysicalCard; +import com.gempukku.lotro.game.state.LotroGame; +import com.gempukku.lotro.logic.actions.ActivateCardAction; +import com.gempukku.lotro.logic.modifiers.Modifier; +import com.gempukku.lotro.logic.modifiers.StrengthModifier; + +import java.util.Collections; +import java.util.List; + +/** + * Set: Rise of Saruman + * Side: Free + * Culture: Gandalf + * Twilight Cost: 2 + * Type: Companion • Man + * Strength: 4 + * Vitality: 3 + * Resistance: 6 + * Game Text: Barliman Butterbur is strength +1 for each attached [GANDALF] follower. Maneuver: Exert Barliman Butterbur + * to reveal the top 2 cards of your deck. Take any [GANDALF] cards into hand and discard the rest. + */ +public class Card17_016 extends AbstractCompanion { + public Card17_016() { + super(2, 4, 3, 6, Culture.GANDALF, Race.MAN, null, "Barliman Butterbur", true); + } + + @Override + public Modifier getAlwaysOnModifier(PhysicalCard self) { + return new StrengthModifier(self, self, null, new CountActiveEvaluator(Zone.ATTACHED, Culture.GANDALF, CardType.FOLLOWER)); + } + + @Override + protected List getExtraInPlayPhaseActions(String playerId, LotroGame game, PhysicalCard self) { + if (PlayConditions.canUseFPCardDuringPhase(game, Phase.MANEUVER, self) + && PlayConditions.canSelfExert(self, game)) { + final ActivateCardAction action = new ActivateCardAction(self); + action.appendCost( + new SelfExertEffect(self)); + action.appendEffect( + new RevealTopCardsOfDrawDeckEffect(self, playerId, 2) { + @Override + protected void cardsRevealed(List cards) { + for (PhysicalCard card : cards) { + if (card.getBlueprint().getCulture() == Culture.GANDALF) + action.appendEffect( + new PutCardFromDeckIntoHandEffect(card)); + } + } + }); + return Collections.singletonList(action); + } + return null; + } +}