"Gondorian Prowler"

This commit is contained in:
marcins78@gmail.com
2012-01-26 16:24:49 +00:00
parent c9e7642d90
commit 053cf83a50

View File

@@ -0,0 +1,88 @@
package com.gempukku.lotro.cards.set15.gondor;
import com.gempukku.lotro.cards.AbstractCompanion;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.AddUntilEndOfPhaseModifierEffect;
import com.gempukku.lotro.cards.effects.ChoiceEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndRemoveCultureTokensFromCardEffect;
import com.gempukku.lotro.cards.modifiers.MinionSiteNumberModifier;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.GameState;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
import com.gempukku.lotro.logic.effects.ChooseActiveCardEffect;
import com.gempukku.lotro.logic.modifiers.ModifiersQuerying;
import com.gempukku.lotro.logic.timing.Effect;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
/**
* Set: The Hunters
* Side: Free
* Culture: Gondor
* Twilight Cost: 2
* Type: Companion • Man
* Strength: 5
* Vitality: 3
* Resistance: 6
* Game Text: Ranger. Hunter 1. When this companion is in your starting fellowship, his twilight cost is -1.
* Skirmish: Remove a [GONDOR] token or exert a [GONDOR] Man to make the site number of a minion +2.
*/
public class Card15_061 extends AbstractCompanion {
public Card15_061() {
super(2, 5, 3, 6, Culture.GONDOR, Race.MAN, null, "Gondorian Prowler");
addKeyword(Keyword.RANGER);
addKeyword(Keyword.HUNTER, 1);
}
@Override
public int getTwilightCostModifier(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard self) {
if (gameState.getCurrentPhase() == Phase.PLAY_STARTING_FELLOWSHIP)
return -1;
return 0;
}
@Override
protected List<ActivateCardAction> getExtraInPlayPhaseActions(String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.SKIRMISH, self)
&& (PlayConditions.canRemoveTokens(game, Token.GONDOR, 1, Filters.any)
|| PlayConditions.canExert(self, game, Culture.GONDOR, Race.MAN))) {
final ActivateCardAction action = new ActivateCardAction(self);
List<Effect> possibleCosts = new LinkedList<Effect>();
possibleCosts.add(
new ChooseAndRemoveCultureTokensFromCardEffect(self, playerId, Token.GONDOR, 1, Filters.any) {
@Override
public String getText(LotroGame game) {
return "Remove a GONDOR token";
}
});
possibleCosts.add(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Culture.GONDOR, Race.MAN) {
@Override
public String getText(LotroGame game) {
return "Exert a GONDOR Man";
}
});
action.appendCost(
new ChoiceEffect(action, playerId, possibleCosts));
action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose a minion", CardType.MINION) {
@Override
protected void cardSelected(LotroGame game, PhysicalCard card) {
action.appendEffect(
new AddUntilEndOfPhaseModifierEffect(
new MinionSiteNumberModifier(self, card, null, 2), Phase.SKIRMISH));
}
});
return Collections.singletonList(action);
}
return null;
}
}