"Iron Fist of the Orc"

This commit is contained in:
marcins78@gmail.com
2011-10-21 11:13:20 +00:00
parent 4fc4c3098c
commit 84cd47c9cf
2 changed files with 83 additions and 1 deletions

View File

@@ -0,0 +1,80 @@
package com.gempukku.lotro.cards.set6.isengard;
import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.RemoveTwilightEffect;
import com.gempukku.lotro.cards.effects.StackCardFromPlayEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardCardsFromPlayEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardStackedCardsEffect;
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.GameUtils;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
import com.gempukku.lotro.logic.actions.OptionalTriggerAction;
import com.gempukku.lotro.logic.effects.DiscardCardsFromPlayEffect;
import com.gempukku.lotro.logic.timing.Action;
import com.gempukku.lotro.logic.timing.Effect;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
/**
* Set: Ents of Fangorn
* Side: Shadow
* Culture: Isengard
* Twilight Cost: 1
* Type: Condition
* Game Text: Plays to your support area. Each time a regroup action discards an [ISENGARD] Orc, you may stack that Orc
* on this card. Regroup: Discard 3 cards stacked here and remove (1) to discard a Free Peoples possession.
*/
public class Card6_064 extends AbstractPermanent {
public Card6_064() {
super(Side.SHADOW, 1, CardType.CONDITION, Culture.ISENGARD, Zone.SUPPORT, "Iron Fist of the Orc");
}
@Override
public List<OptionalTriggerAction> getOptionalBeforeTriggers(String playerId, LotroGame game, Effect effect, PhysicalCard self) {
if (PlayConditions.isGettingDiscarded(effect, game, Culture.ISENGARD, Race.ORC)) {
DiscardCardsFromPlayEffect discardEffect = (DiscardCardsFromPlayEffect) effect;
if (game.getGameState().getCurrentPhase() == Phase.REGROUP
&& discardEffect.getSource() != null) {
List<OptionalTriggerAction> actions = new LinkedList<OptionalTriggerAction>();
final Collection<PhysicalCard> discardedOrcs = Filters.filter(discardEffect.getAffectedCardsMinusPrevented(game), game.getGameState(), game.getModifiersQuerying(), Culture.ISENGARD, Race.ORC);
for (final PhysicalCard discardedOrc : discardedOrcs) {
OptionalTriggerAction action = new OptionalTriggerAction(self) {
@Override
public String getText(LotroGame game) {
return "Stack " + GameUtils.getCardLink(discardedOrc);
}
};
action.appendEffect(
new StackCardFromPlayEffect(discardedOrc, self));
actions.add(action);
}
return actions;
}
}
return null;
}
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game.getGameState(), Phase.SHADOW, self, 1)
&& game.getGameState().getStackedCards(self).size() >= 3) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndDiscardStackedCardsEffect(action, playerId, 3, 3, self, Filters.any));
action.appendCost(
new RemoveTwilightEffect(1));
action.appendEffect(
new ChooseAndDiscardCardsFromPlayEffect(action, playerId, 1, 1, Side.FREE_PEOPLE, CardType.POSSESSION));
return Collections.singletonList(action);
}
return null;
}
}

View File

@@ -1,5 +1,7 @@
TO DO:
Before release:
Critical:
- If a card prevents all wounds, the wounds can still be assiged to the card, but take no effect, which is different
from "can't take wounds".
Next priority:
30. Watching game replay after it's finished and sharing the game replay with others via code.