From ed399e9d8dce05f0dee3767f24602f68cc50e298 Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Mon, 12 Dec 2011 13:44:03 +0000 Subject: [PATCH] "Orc Stretegist" --- .../lotro/cards/set12/orc/Card12_097.java | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set12/orc/Card12_097.java diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set12/orc/Card12_097.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set12/orc/Card12_097.java new file mode 100644 index 000000000..dd370565b --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set12/orc/Card12_097.java @@ -0,0 +1,52 @@ +package com.gempukku.lotro.cards.set12.orc; + +import com.gempukku.lotro.cards.AbstractMinion; +import com.gempukku.lotro.cards.PlayConditions; +import com.gempukku.lotro.cards.effects.AddUntilStartOfPhaseModifierEffect; +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.ChooseActiveCardEffect; +import com.gempukku.lotro.logic.modifiers.RemoveKeywordModifier; +import com.gempukku.lotro.logic.timing.Action; + +import java.util.Collections; +import java.util.List; + +/** + * Set: Black Rider + * Side: Shadow + * Culture: Orc + * Twilight Cost: 4 + * Type: Minion • Orc + * Strength: 11 + * Vitality: 3 + * Site: 4 + * Game Text: Lurker. (Skirmishes involving lurker minions must be resolved after any others.) Maneuver: Make an [ORC] + * lurker minion lose lurker until the regroup phase. + */ +public class Card12_097 extends AbstractMinion { + public Card12_097() { + super(4, 11, 3, 4, Race.ORC, Culture.ORC, "Orc Stretegist"); + addKeyword(Keyword.LURKER); + } + + @Override + protected List getExtraPhaseActions(String playerId, LotroGame game, final PhysicalCard self) { + if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.MANEUVER, self, 0)) { + final ActivateCardAction action = new ActivateCardAction(self); + action.appendEffect( + new ChooseActiveCardEffect(self, playerId, "Choose an ORC lurker minion", Culture.ORC, Keyword.LURKER, CardType.MINION) { + @Override + protected void cardSelected(LotroGame game, PhysicalCard card) { + action.appendEffect( + new AddUntilStartOfPhaseModifierEffect( + new RemoveKeywordModifier(self, card, Keyword.LURKER), Phase.REGROUP)); + } + }); + return Collections.singletonList(action); + } + return null; + } +}