"Herugrim"

This commit is contained in:
marcins78@gmail.com
2011-11-07 10:31:56 +00:00
parent a5f580840a
commit c60b6448ac

View File

@@ -0,0 +1,69 @@
package com.gempukku.lotro.cards.set7.rohan;
import com.gempukku.lotro.cards.AbstractAttachableFPPossession;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.PreventCardEffect;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Filterable;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.PossessionClass;
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.AddThreatsEffect;
import com.gempukku.lotro.logic.effects.WoundCharactersEffect;
import com.gempukku.lotro.logic.modifiers.KeywordModifier;
import com.gempukku.lotro.logic.modifiers.Modifier;
import com.gempukku.lotro.logic.timing.Action;
import com.gempukku.lotro.logic.timing.Effect;
import java.util.Collections;
import java.util.List;
/**
* Set: The Return of the King
* Side: Free
* Culture: Rohan
* Twilight Cost: 3
* Type: Possession • Hand Weapon
* Strength: +2
* Vitality: +1
* Game Text: Bearer must be Theoden. He is damage +1. Response: If Theoden is about to take a wound and you cannot spot
* 3 threats, add 2 threats to prevent that wound.
*/
public class Card7_236 extends AbstractAttachableFPPossession {
public Card7_236() {
super(3, 2, 1, Culture.ROHAN, PossessionClass.HAND_WEAPON, "Herugrim", true);
}
@Override
protected Filterable getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self) {
return Filters.name("Theoden");
}
@Override
protected List<? extends Modifier> getNonBasicStatsModifiers(PhysicalCard self) {
return Collections.singletonList(
new KeywordModifier(self, self, Keyword.DAMAGE, 1));
}
@Override
public List<? extends Action> getOptionalInPlayBeforeActions(String playerId, LotroGame game, Effect effect, PhysicalCard self) {
if (PlayConditions.isGettingWounded(effect, game, Filters.name("Theoden"))
&& !PlayConditions.canSpotThreat(game, 3)
&& PlayConditions.canAddThreat(game, self, 2)) {
PhysicalCard theoden = Filters.findFirstActive(game.getGameState(), game.getModifiersQuerying(), Filters.name("Theoden"));
WoundCharactersEffect woundEffect = (WoundCharactersEffect) effect;
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new AddThreatsEffect(playerId, self, 2));
action.appendEffect(
new PreventCardEffect(woundEffect, theoden));
return Collections.singletonList(action);
}
return null;
}
}