"Lying in Wait"

This commit is contained in:
marcins78@gmail.com
2012-01-10 15:54:35 +00:00
parent bf2380466f
commit f92c3eef03

View File

@@ -0,0 +1,74 @@
package com.gempukku.lotro.cards.set13.men;
import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.AddUntilStartOfPhaseModifierEffect;
import com.gempukku.lotro.cards.effects.TransferPermanentEffect;
import com.gempukku.lotro.cards.modifiers.evaluator.CountSpottableEvaluator;
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.ActivateCardAction;
import com.gempukku.lotro.logic.actions.RequiredTriggerAction;
import com.gempukku.lotro.logic.effects.ChooseActiveCardEffect;
import com.gempukku.lotro.logic.modifiers.Modifier;
import com.gempukku.lotro.logic.modifiers.StrengthModifier;
import com.gempukku.lotro.logic.timing.Action;
import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* Set: Bloodlines
* Side: Shadow
* Culture: Men
* Twilight Cost: 0
* Type: Condition • Support Area
* Game Text: Skirmish: Transfer this condition from your support area to your [MEN] minion. (Limit 1 per bearer.)
* Bearer is strength +1 for each other [MEN] minion you can spot. Each time a [MEN] minion wins a skirmish, make bearer
* strength +1 until the regroup phase.
*/
public class Card13_095 extends AbstractPermanent {
public Card13_095() {
super(Side.SHADOW, 0, CardType.CONDITION, Culture.MEN, Zone.SUPPORT, "Lying in Wait");
}
@Override
public Modifier getAlwaysOnModifier(PhysicalCard self) {
return new StrengthModifier(self, Filters.hasAttached(self), null, new CountSpottableEvaluator(Filters.not(Filters.hasAttached(self)), Culture.MEN, CardType.MINION));
}
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.winsSkirmish(game, effectResult, Culture.MEN, CardType.MINION)
&& self.getZone() == Zone.ATTACHED) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new AddUntilStartOfPhaseModifierEffect(
new StrengthModifier(self, self.getAttachedTo(), 1), Phase.REGROUP));
return Collections.singletonList(action);
}
return null;
}
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SKIRMISH, self, 0)
&& self.getZone() == Zone.SUPPORT) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose your MEN minion", Filters.owner(playerId), Culture.MEN, CardType.MINION, Filters.not(Filters.hasAttached(Filters.name(getName())))) {
@Override
protected void cardSelected(LotroGame game, PhysicalCard card) {
action.appendEffect(
new TransferPermanentEffect(self, card));
}
});
return Collections.singletonList(action);
}
return null;
}
}