"Eowyn's Shield"

This commit is contained in:
marcins78@gmail.com
2011-11-14 23:10:46 +00:00
parent 6122fecfb8
commit 1332e26e65

View File

@@ -0,0 +1,61 @@
package com.gempukku.lotro.cards.set8.rohan;
import com.gempukku.lotro.cards.AbstractAttachableFPPossession;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardCardsFromPlayEffect;
import com.gempukku.lotro.cards.modifiers.ArcheryTotalModifier;
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.effects.AddThreatsEffect;
import com.gempukku.lotro.logic.effects.DiscardCardsFromPlayEffect;
import com.gempukku.lotro.logic.modifiers.Modifier;
import com.gempukku.lotro.logic.timing.Action;
import java.util.Collections;
import java.util.List;
/**
* Set: Siege of Gondor
* Side: Free
* Culture: Rohan
* Twilight Cost: 1
* Type: Possession • Shield
* Game Text: Bearer must be a [ROHAN] Man. The minion archery total is -1. Skirmish: If bearer is Eowyn, add a threat and discard Eowyns Shield to discard a hand weapon borne by a minion she is skirmishing.
*/
public class Card8_088 extends AbstractAttachableFPPossession {
public Card8_088() {
super(1, 0, 0, Culture.ROHAN, PossessionClass.SHIELD, "Eowyn's Shield", true);
}
@Override
protected Filterable getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self) {
return Filters.and(Culture.ROHAN, Race.MAN);
}
@Override
protected List<? extends Modifier> getNonBasicStatsModifiers(PhysicalCard self) {
return Collections.singletonList(
new ArcheryTotalModifier(self, Side.SHADOW, -1));
}
@Override
protected List<? extends Action> getExtraInPlayPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.SKIRMISH, self)
&& self.getAttachedTo().getBlueprint().getName().equals("Eowyn")
&& PlayConditions.canAddThreat(game, self, 1)
&& PlayConditions.canSelfDiscard(self, game)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new AddThreatsEffect(playerId, self, 1));
action.appendCost(
new DiscardCardsFromPlayEffect(self, self));
action.appendEffect(
new ChooseAndDiscardCardsFromPlayEffect(action, playerId, 1, 1, PossessionClass.HAND_WEAPON, Filters.attachedTo(CardType.MINION, Filters.inSkirmishAgainst(self.getAttachedTo()))));
return Collections.singletonList(action);
}
return null;
}
}