diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set8/sauron/Card8_101.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set8/sauron/Card8_101.java new file mode 100644 index 000000000..36168ba4f --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set8/sauron/Card8_101.java @@ -0,0 +1,51 @@ +package com.gempukku.lotro.cards.set8.sauron; + +import com.gempukku.lotro.cards.AbstractMinion; +import com.gempukku.lotro.cards.PlayConditions; +import com.gempukku.lotro.cards.effects.AddBurdenEffect; +import com.gempukku.lotro.cards.effects.ExertCharactersEffect; +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.effects.DrawCardEffect; +import com.gempukku.lotro.logic.timing.Action; + +import java.util.Collections; +import java.util.List; + +/** + * Set: Siege of Gondor + * Side: Shadow + * Culture: Sauron + * Twilight Cost: 4 + * Type: Minion • Orc + * Strength: 10 + * Vitality: 2 + * Site: 5 + * Game Text: Besieger. Shadow: If you have initiative, exert this minion to add a burden and make the Free Peoples + * player draw a card. + */ +public class Card8_101 extends AbstractMinion { + public Card8_101() { + super(4, 10, 2, 5, Race.ORC, Culture.SAURON, "Gorgoroth Stormer"); + addKeyword(Keyword.BESIEGER); + } + + @Override + protected List getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) { + if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SHADOW, self, 0) + && PlayConditions.hasInitiative(game, Side.SHADOW) + && PlayConditions.canSelfExert(self, game)) { + ActivateCardAction action = new ActivateCardAction(self); + action.appendCost( + new ExertCharactersEffect(self, self)); + action.appendEffect( + new AddBurdenEffect(self, 1)); + action.appendEffect( + new DrawCardEffect(game.getGameState().getCurrentPlayerId(), 1)); + return Collections.singletonList(action); + } + return null; + } +}