"Grond", "Wolf's Head"

This commit is contained in:
marcins78
2013-02-07 12:18:11 +00:00
parent 5e63efa791
commit 50f6aa1ce5

View File

@@ -0,0 +1,75 @@
package com.gempukku.lotro.cards.set20.sauron;
import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.PreventableEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.common.*;
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.ActivateCardAction;
import com.gempukku.lotro.logic.actions.SubAction;
import com.gempukku.lotro.logic.decisions.DecisionResultInvalidException;
import com.gempukku.lotro.logic.decisions.IntegerAwaitingDecision;
import com.gempukku.lotro.logic.effects.ChooseActiveCardEffect;
import com.gempukku.lotro.logic.effects.DiscardCardsFromPlayEffect;
import com.gempukku.lotro.logic.effects.PlayoutDecisionEffect;
import com.gempukku.lotro.logic.effects.RemoveThreatsEffect;
import com.gempukku.lotro.logic.timing.Action;
import com.gempukku.lotro.logic.timing.Effect;
import java.util.Collections;
import java.util.List;
/**
* 3
* •Grond, Wolf's Head
* Sauron Possession • Support Area
* Regroup: Remove X threats and exert a [Sauron] minion to discard a non-character Free Peoples card that has
* a twilight cost of X. The Free Peoples player may exert a companion of a different culture than the chosen card to prevent this.
*/
public class Card20_361 extends AbstractPermanent {
public Card20_361() {
super(Side.SHADOW, 3, CardType.POSSESSION, Culture.SAURON, Zone.SUPPORT, "Grond", "Wolf's Head", true);
}
@Override
protected List<? extends Action> getExtraPhaseActions(final String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.REGROUP, self, 0)
&& PlayConditions.canExert(self, game, Culture.SAURON, CardType.MINION)) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new PlayoutDecisionEffect(playerId,
new IntegerAwaitingDecision(1, "Choose X", 0, game.getGameState().getThreats()) {
@Override
public void decisionMade(String result) throws DecisionResultInvalidException {
int threats = getValidatedResult(result);
action.insertCost(
new RemoveThreatsEffect(self, threats));
action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose card to discard", Filters.not(Filters.character), Side.FREE_PEOPLE, Filters.printedTwilightCost(threats), Filters.canBeDiscarded(playerId, self)) {
@Override
protected void cardSelected(LotroGame game, final PhysicalCard cardToDiscard) {
action.appendEffect(
new PreventableEffect(action,
new DiscardCardsFromPlayEffect(playerId, self, cardToDiscard),
game.getGameState().getCurrentPlayerId(),
new PreventableEffect.PreventionCost() {
@Override
public Effect createPreventionCostForPlayer(SubAction subAction, String playerId) {
return new ChooseAndExertCharactersEffect(action, playerId, 1, 1,
CardType.COMPANION, Filters.not(cardToDiscard.getBlueprint().getCulture()));
}
}));
}
});
}
}));
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Culture.SAURON, CardType.MINION));
return Collections.singletonList(action);
}
return null;
}
}