"Troll of Gorgoroth"

This commit is contained in:
marcins78@gmail.com
2011-11-15 12:37:43 +00:00
parent dd24fd36ac
commit a8a40aea4a

View File

@@ -0,0 +1,78 @@
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.ExertCharactersEffect;
import com.gempukku.lotro.cards.effects.StackCardFromPlayEffect;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Race;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.GameState;
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.ModifiersQuerying;
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: 10
* Type: Minion • Troll
* Strength: 14
* Vitality: 4
* Site: 5
* Game Text: Besieger. Fierce. To play, spot a [SAURON] Orc. The twilight cost of Troll of Gorgoroth is -2 for each
* [SAURON] engine you spot. Regroup: Exert Troll of Gorgoroth to stack your besieger on a site you control.
*/
public class Card8_108 extends AbstractMinion {
public Card8_108() {
super(10, 14, 4, 5, Race.TROLL, Culture.SAURON, "Troll of Gorgoroth", true);
addKeyword(Keyword.BESIEGER);
addKeyword(Keyword.FIERCE);
}
@Override
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
return super.checkPlayRequirements(playerId, game, self, twilightModifier, ignoreRoamingPenalty)
&& PlayConditions.canSpot(game, Culture.SAURON, Race.ORC);
}
@Override
public int getTwilightCostModifier(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard self) {
return -2 * Filters.countSpottable(gameState, modifiersQuerying, Culture.SAURON, Keyword.ENGINE);
}
@Override
protected List<? extends Action> getExtraPhaseActions(final String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.REGROUP, self, 0)
&& PlayConditions.canSelfExert(self, game)) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ExertCharactersEffect(self, self));
action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose a site you control", Filters.siteControlled(playerId)) {
@Override
protected void cardSelected(LotroGame game, final PhysicalCard site) {
action.insertEffect(
new ChooseActiveCardEffect(self, playerId, "Choose your Besieger", Filters.owner(playerId), Keyword.BESIEGER) {
@Override
protected void cardSelected(LotroGame game, PhysicalCard besieger) {
action.insertEffect(
new StackCardFromPlayEffect(besieger, site));
}
});
}
});
return Collections.singletonList(action);
}
return null;
}
}