"Legolas"

This commit is contained in:
marcins78@gmail.com
2012-03-09 11:02:15 +00:00
parent 7e8c9fe83f
commit 1fa7b13e40

View File

@@ -0,0 +1,52 @@
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.AddUntilEndOfPhaseModifierEffect;
import com.gempukku.lotro.cards.modifiers.DoesNotAddToArcheryTotalModifier;
import com.gempukku.lotro.common.*;
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.ChooseAndWoundCharactersEffect;
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: 7
* Game Text: Archer. Fellowship. Archery: Add two threats to wound a minion; Legolas does not add to the fellowship
* archery total.
*/
public class Card19_007 extends AbstractCompanion {
public Card19_007() {
super(2, 6, 3, 7, Culture.ELVEN, Race.ELF, null, "Legolas", true);
addKeyword(Keyword.ARCHER);
addKeyword(Keyword.FELLOWSHIP);
}
@Override
protected List<ActivateCardAction> getExtraInPlayPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.ARCHERY, self)
&& PlayConditions.canAddThreat(game, self, 2)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new AddThreatsEffect(playerId, self, 2));
action.appendEffect(
new ChooseAndWoundCharactersEffect(action, playerId, 1, 1, CardType.MINION));
action.appendEffect(
new AddUntilEndOfPhaseModifierEffect(
new DoesNotAddToArcheryTotalModifier(self, self), Phase.ARCHERY));
return Collections.singletonList(action);
}
return null;
}
}