"Armed for Battle"

This commit is contained in:
marcins78@gmail.com
2011-12-05 01:51:39 +00:00
parent f5c605a486
commit e97e557067

View File

@@ -0,0 +1,50 @@
package com.gempukku.lotro.cards.set11.orc;
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.ChoiceEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndPlayCardFromDeckEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndPlayCardFromDiscardEffect;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.timing.Effect;
import java.util.LinkedList;
import java.util.List;
/**
* Set: Shadows
* Side: Shadow
* Culture: Orc
* Twilight Cost: 0
* Type: Event • Shadow
* Game Text: Spot your [ORC] minion to play an [ORC] possession from your discard pile (or, if that minion is at
* a battleground site, from your draw deck or discard pile).
*/
public class Card11_106 extends AbstractEvent {
public Card11_106() {
super(Side.SHADOW, 0, Culture.ORC, "Armed for Battle", Phase.SHADOW);
}
@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, Culture.ORC, CardType.MINION)
&& (PlayConditions.location(game, Keyword.BATTLEGROUND) || PlayConditions.canPlayFromDiscard(playerId, game, Culture.ORC, CardType.POSSESSION));
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayEventAction action = new PlayEventAction(self);
List<Effect> possibleEffects = new LinkedList<Effect>();
possibleEffects.add(
new ChooseAndPlayCardFromDiscardEffect(playerId, game, Culture.ORC, CardType.POSSESSION));
possibleEffects.add(
new ChooseAndPlayCardFromDeckEffect(playerId, Culture.ORC, CardType.POSSESSION));
action.appendEffect(
new ChoiceEffect(action, playerId, possibleEffects));
return action;
}
}