"Arwen's Bow"

This commit is contained in:
marcins78@gmail.com
2012-02-29 11:29:22 +00:00
parent 01bceb54c6
commit 86083028ac

View File

@@ -0,0 +1,51 @@
package com.gempukku.lotro.cards.set18.elven;
import com.gempukku.lotro.cards.AbstractAttachableFPPossession;
import com.gempukku.lotro.cards.PlayConditions;
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.ChooseAndDiscardCardsFromHandEffect;
import com.gempukku.lotro.logic.effects.ChooseAndWoundCharactersEffect;
import com.gempukku.lotro.logic.timing.Action;
import java.util.Collections;
import java.util.List;
/**
* Set: Treachery & Deceit
* Side: Free
* Culture: Elven
* Twilight Cost: 2
* Type: Possession • Ranged Weapon
* Strength: +1
* Game Text: Bearer must be an [ELVEN] companion. Archery: If bearer is Arwen, discard 2 [ELVEN] cards from hand
* to wound a minion.
*/
public class Card18_004 extends AbstractAttachableFPPossession {
public Card18_004() {
super(2, 1, 0, Culture.ELVEN, PossessionClass.RANGED_WEAPON, "Arwen's Bow", true);
}
@Override
protected Filterable getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self) {
return Filters.and(Culture.ELVEN, CardType.COMPANION);
}
@Override
protected List<? extends Action> getExtraInPlayPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.ARCHERY, self)
&& PlayConditions.canSpot(game, Filters.hasAttached(self), Filters.name("Arwen"))
&& PlayConditions.canDiscardFromHand(game, playerId, 2, Culture.ELVEN)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndDiscardCardsFromHandEffect(action, playerId, false, 2, Culture.ELVEN));
action.appendEffect(
new ChooseAndWoundCharactersEffect(action, playerId, 1, 1, CardType.MINION));
return Collections.singletonList(action);
}
return null;
}
}