"Orc Raid Commander"

This commit is contained in:
marcins78@gmail.com
2012-01-11 11:22:31 +00:00
parent 94ab14e109
commit 816f708f0b

View File

@@ -0,0 +1,57 @@
package com.gempukku.lotro.cards.set13.orc;
import com.gempukku.lotro.cards.AbstractMinion;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
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.actions.RequiredTriggerAction;
import com.gempukku.lotro.logic.effects.ChooseActiveCardEffect;
import com.gempukku.lotro.logic.effects.DiscardCardsFromPlayEffect;
import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* Set: Bloodlines
* Side: Shadow
* Culture: Orc
* Twilight Cost: 5
* Type: Minion • Orc
* Strength: 12
* Vitality: 2
* Site: 4
* Game Text: To play, spot an [ORC] card in your support area. When you play this, spot a Free Peoples condition
* to discard from play each other card that has the same card title as that condition.
*/
public class Card13_115 extends AbstractMinion {
public Card13_115() {
super(5, 12, 2, 4, Race.ORC, Culture.ORC, "Orc Raid Commander");
}
@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, Zone.SUPPORT);
}
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, final PhysicalCard self) {
if (TriggerConditions.played(game, effectResult, self)) {
final RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendCost(
new ChooseActiveCardEffect(self, self.getOwner(), "Choose a Free Peoples condition", Side.FREE_PEOPLE, CardType.CONDITION) {
@Override
protected void cardSelected(LotroGame game, PhysicalCard card) {
action.appendEffect(
new DiscardCardsFromPlayEffect(self, Filters.not(card), Filters.name(card.getBlueprint().getName())));
}
});
return Collections.singletonList(action);
}
return null;
}
}