"Howling Orc"

This commit is contained in:
marcins78@gmail.com
2012-01-10 16:58:02 +00:00
parent 7baa1eb402
commit 9eb1d74a70

View File

@@ -0,0 +1,46 @@
package com.gempukku.lotro.cards.set13.orc;
import com.gempukku.lotro.cards.AbstractMinion;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.AddUntilStartOfPhaseModifierEffect;
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.OptionalTriggerAction;
import com.gempukku.lotro.logic.modifiers.StrengthModifier;
import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* Set: Bloodlines
* Side: Shadow
* Culture: Orc
* Twilight Cost: 3
* Type: Minion • Orc
* Strength: 8
* Vitality: 2
* Site: 4
* Game Text: Lurker. (Skirmishes involving lurker minions must be resolved before any others.) Each time
* an [ORC] minion is killed in a skirmish, you may make this minion strength +2 until the regroup phase.
*/
public class Card13_109 extends AbstractMinion {
public Card13_109() {
super(3, 8, 2, 4, Race.ORC, Culture.ORC, "Howling Orc");
addKeyword(Keyword.LURKER);
}
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.forEachKilledInASkirmish(game, effectResult, Filters.any, Culture.ORC, CardType.MINION)) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
action.appendEffect(
new AddUntilStartOfPhaseModifierEffect(
new StrengthModifier(self, self, 2), Phase.REGROUP));
return Collections.singletonList(action);
}
return null;
}
}