This commit is contained in:
marcins78@gmail.com
2012-03-09 11:00:21 +00:00
parent 18af574829
commit 7e8c9fe83f

View File

@@ -0,0 +1,55 @@
package com.gempukku.lotro.cards.set19.elven;
import com.gempukku.lotro.cards.AbstractCompanion;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.ReconcileHandEffect;
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.modifiers.Modifier;
import com.gempukku.lotro.logic.modifiers.SpotCondition;
import com.gempukku.lotro.logic.modifiers.StrengthModifier;
import java.util.Collections;
import java.util.List;
/**
* Set: Ages End
* Side: Free
* Culture: Elven
* Twilight Cost: 2
* Type: Companion • Elf
* Strength: 6
* Vitality: 3
* Resistance: 6
* Game Text: Ranger. While you can spot 2 [ELVEN] followers, each minion skirmishing Arwen is strength -2.
* Maneuver: Add 3 threats to reconcile your hand.
*/
public class Card19_006 extends AbstractCompanion {
public Card19_006() {
super(2, 6, 3, 6, Culture.ELVEN, Race.ELF, null, "Arwen", true);
addKeyword(Keyword.RANGER);
}
@Override
public Modifier getAlwaysOnModifier(PhysicalCard self) {
return new StrengthModifier(self, Filters.and(CardType.MINION, Filters.inSkirmishAgainst(self)), new SpotCondition(2, Culture.ELVEN, CardType.FOLLOWER), -2);
}
@Override
protected List<ActivateCardAction> getExtraInPlayPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.MANEUVER, self)
&& PlayConditions.canAddThreat(game, self, 3)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new AddThreatsEffect(playerId, self, 3));
action.appendEffect(
new ReconcileHandEffect(playerId));
return Collections.singletonList(action);
}
return null;
}
}