This commit is contained in:
marcins78@gmail.com
2011-11-20 01:06:04 +00:00
parent e216eae615
commit 4c322b1145

View File

@@ -0,0 +1,63 @@
package com.gempukku.lotro.cards.set9.elven;
import com.gempukku.lotro.cards.AbstractAttachableFPPossession;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.PutCardFromHandOnTopOfDeckEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseCardsFromHandEffect;
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.ChooseAndHealCharactersEffect;
import com.gempukku.lotro.logic.effects.DiscardCardsFromPlayEffect;
import com.gempukku.lotro.logic.timing.Action;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
/**
* Set: Reflections
* Side: Free
* Culture: Elven
* Twilight Cost: 0
* Type: Artifact • Ring
* Vitality: +1
* Game Text: Bearer must be Galadriel. Maneuver: Heal 2 companions and place up to 2 cards from hand on top of your
* draw deck. Discard this artifact.
*/
public class Card9_020 extends AbstractAttachableFPPossession {
public Card9_020() {
super(0, 0, 1, Culture.ELVEN, CardType.ARTIFACT, PossessionClass.RING, "Nenya", true);
}
@Override
protected Filterable getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self) {
return Filters.galadriel;
}
@Override
protected List<? extends Action> getExtraInPlayPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.MANEUVER, self)) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendEffect(
new ChooseAndHealCharactersEffect(action, playerId, 2, 2, CardType.COMPANION));
for (int i = 0; i < 2; i++)
action.appendEffect(
new ChooseCardsFromHandEffect(playerId, 0, 1, Filters.any) {
@Override
protected void cardsSelected(LotroGame game, Collection<PhysicalCard> selectedCards) {
for (PhysicalCard selectedCard : selectedCards) {
action.insertEffect(
new PutCardFromHandOnTopOfDeckEffect(selectedCard));
}
}
});
action.appendEffect(
new DiscardCardsFromPlayEffect(self, self));
return Collections.singletonList(action);
}
return null;
}
}