"Cirith Ungol Warrior"

This commit is contained in:
marcins78@gmail.com
2011-11-17 15:31:40 +00:00
parent 6a076d1827
commit 5b2b67d99d

View File

@@ -0,0 +1,44 @@
package com.gempukku.lotro.cards.set10.wraith;
import com.gempukku.lotro.cards.AbstractMinion;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.AddUntilStartOfPhaseModifierEffect;
import com.gempukku.lotro.common.*;
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.modifiers.KeywordModifier;
import com.gempukku.lotro.logic.timing.Action;
import java.util.Collections;
import java.util.List;
/**
* Set: Mount Doom
* Side: Shadow
* Culture: Wraith
* Twilight Cost: 4
* Type: Minion • Orc
* Strength: 9
* Vitality: 2
* Site: 4
* Game Text: Shadow: Spot a possession to make this minion fierce until the regroup phase.
*/
public class Card10_056 extends AbstractMinion {
public Card10_056() {
super(4, 9, 2, 4, Race.ORC, Culture.WRAITH, "Cirith Ungol Warrior");
}
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SHADOW, self, 0)
&& PlayConditions.canSpot(game, CardType.POSSESSION)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendEffect(
new AddUntilStartOfPhaseModifierEffect(
new KeywordModifier(self, self, Keyword.FIERCE), Phase.REGROUP));
return Collections.singletonList(action);
}
return null;
}
}