"Picket Denizen"

This commit is contained in:
marcins78@gmail.com
2012-01-11 11:30:10 +00:00
parent 6fb46c6abf
commit 176d12ebb9

View File

@@ -0,0 +1,53 @@
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.cards.effects.SelfExertEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndPreventCardEffect;
import com.gempukku.lotro.common.CardType;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Race;
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.ActivateCardAction;
import com.gempukku.lotro.logic.effects.WoundCharactersEffect;
import com.gempukku.lotro.logic.timing.Effect;
import java.util.Collections;
import java.util.List;
/**
* Set: Bloodlines
* Side: Shadow
* Culture: Orc
* Twilight Cost: 3
* Type: Minion • Orc
* Strength: 9
* Vitality: 2
* Site: 4
* Game Text: Lurker. (Skirmishes involving lurker minions must be resolved after any others.) Response: If another
* [ORC] minion is about to take a wound, exert this minion to prevent that.
*/
public class Card13_118 extends AbstractMinion {
public Card13_118() {
super(3, 9, 2, 4, Race.ORC, Culture.ORC, "Picket Denizen");
addKeyword(Keyword.LURKER);
}
@Override
public List<? extends ActivateCardAction> getOptionalInPlayBeforeActions(String playerId, LotroGame game, Effect effect, PhysicalCard self) {
if (TriggerConditions.isGettingWounded(effect, game, Filters.not(self), Culture.ORC, CardType.MINION)
&& PlayConditions.canSelfExert(self, game)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new SelfExertEffect(self));
action.appendEffect(
new ChooseAndPreventCardEffect(self, (WoundCharactersEffect) effect, playerId, "Choose and ORC minion", Culture.ORC, CardType.MINION));
return Collections.singletonList(action);
}
return null;
}
}