"Mighty Shot"

This commit is contained in:
marcins78@gmail.com
2012-01-17 12:55:14 +00:00
parent 514c5ce5d3
commit 49f31f88ae

View File

@@ -0,0 +1,51 @@
package com.gempukku.lotro.cards.set15.elven;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.AddUntilEndOfPhaseModifierEffect;
import com.gempukku.lotro.cards.modifiers.ArcheryTotalModifier;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filter;
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.modifiers.ModifiersQuerying;
/**
* Set: The Hunters
* Side: Free
* Culture: Elven
* Twilight Cost: 2
* Type: Event • Archery
* Game Text: Spot an Elf to make the fellowship archery total +1 for each minion with twilight cost 2 or less that
* you can spot.
*/
public class Card15_021 extends AbstractEvent {
public Card15_021() {
super(Side.FREE_PEOPLE, 2, Culture.ELVEN, "Mighty Shot", Phase.ARCHERY);
}
@Override
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int withTwilightRemoved, int twilightModifier, boolean ignoreRoamingPenalty, boolean ignoreCheckingDeadPile) {
return super.checkPlayRequirements(playerId, game, self, withTwilightRemoved, twilightModifier, ignoreRoamingPenalty, ignoreCheckingDeadPile)
&& PlayConditions.canSpot(game, Race.ELF);
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayEventAction action = new PlayEventAction(self);
int count = Filters.countSpottable(game.getGameState(), game.getModifiersQuerying(), CardType.MINION,
new Filter() {
@Override
public boolean accepts(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard physicalCard) {
return physicalCard.getBlueprint().getTwilightCost() <= 2;
}
});
action.appendEffect(
new AddUntilEndOfPhaseModifierEffect(
new ArcheryTotalModifier(self, Side.FREE_PEOPLE, count), Phase.ARCHERY));
return action;
}
}