"Swift Stroke"

This commit is contained in:
marcins78@gmail.com
2012-02-03 17:35:08 +00:00
parent 6424d80671
commit 1548a15c99

View File

@@ -0,0 +1,45 @@
package com.gempukku.lotro.cards.set15.rohan;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
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.effects.ChooseActiveCardEffect;
import com.gempukku.lotro.logic.effects.DiscardCardsFromPlayEffect;
/**
* Set: The Hunters
* Side: Free
* Culture: Rohan
* Twilight Cost: 1
* Type: Event • Skirmish
* Game Text: Spot your [ROHAN] Man bearing a possession to discard all possessions from one character.
*/
public class Card15_142 extends AbstractEvent {
public Card15_142() {
super(Side.FREE_PEOPLE, 1, Culture.ROHAN, "Swift Stroke", Phase.SKIRMISH);
}
@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, Filters.owner(playerId), Culture.ROHAN, Race.MAN, Filters.hasAttached(CardType.POSSESSION));
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, final PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
final PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose a character", Filters.character) {
@Override
protected void cardSelected(LotroGame game, PhysicalCard card) {
action.appendEffect(
new DiscardCardsFromPlayEffect(self, CardType.POSSESSION, Filters.attachedTo(card)));
}
});
return action;
}
}