"Morgai Foothills"

This commit is contained in:
marcins78@gmail.com
2011-11-15 12:50:47 +00:00
parent d23d593a10
commit d23686102c

View File

@@ -0,0 +1,70 @@
package com.gempukku.lotro.cards.set8.shire;
import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.ForEachYouSpotEffect;
import com.gempukku.lotro.cards.effects.RemoveTwilightEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardCardsFromHandEffect;
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.RequiredTriggerAction;
import com.gempukku.lotro.logic.effects.DiscardCardsFromPlayEffect;
import com.gempukku.lotro.logic.timing.Action;
import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* Set: Siege of Gondor
* Side: Free
* Culture: Shire
* Twilight Cost: 0
* Type: Condition • Support Area
* Game Text: When the fellowship moves from site 4K, remove (1) for each Ring-bound companion you spot.
* Regroup: Discard a card from hand for each Ring-bound companion you spot. Discard this condition.
*/
public class Card8_110 extends AbstractPermanent {
public Card8_110() {
super(Side.FREE_PEOPLE, 0, CardType.CONDITION, Culture.SHIRE, Zone.SUPPORT, "Morgai Foothills", true);
}
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (PlayConditions.movesFrom(game, effectResult, Filters.siteBlock(Block.KING), Filters.siteNumber(4))) {
final RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new ForEachYouSpotEffect(game.getGameState().getCurrentPlayerId(), CardType.COMPANION, Keyword.RING_BOUND) {
@Override
protected void spottedCards(int spotCount) {
action.insertEffect(
new RemoveTwilightEffect(spotCount));
}
});
return Collections.singletonList(action);
}
return null;
}
@Override
protected List<? extends Action> getExtraPhaseActions(final String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.REGROUP, self, 0)) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendEffect(
new ForEachYouSpotEffect(game.getGameState().getCurrentPlayerId(), CardType.COMPANION, Keyword.RING_BOUND) {
@Override
protected void spottedCards(int spotCount) {
action.insertEffect(
new ChooseAndDiscardCardsFromHandEffect(action, playerId, false, spotCount));
action.appendEffect(
new DiscardCardsFromPlayEffect(self, self));
}
});
return Collections.singletonList(action);
}
return null;
}
}