"Cave Troll's Hammer"

This commit is contained in:
marcins78@gmail.com
2011-12-12 13:04:45 +00:00
parent d37671a5a2
commit 61a0cee0dc

View File

@@ -0,0 +1,61 @@
package com.gempukku.lotro.cards.set12.orc;
import com.gempukku.lotro.cards.AbstractAttachable;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.ForEachYouSpotEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
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.RequiredTriggerAction;
import com.gempukku.lotro.logic.modifiers.Modifier;
import com.gempukku.lotro.logic.modifiers.StrengthModifier;
import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* Set: Black Rider
* Side: Shadow
* Culture: Orc
* Twilight Cost: 2
* Type: Possession • Hand Weapon
* Strength: +3
* Game Text: Bearer must be an [ORC] Troll. When you play this possession, the Free Peoples player must exert
* a companion for each lurker you spot.
*/
public class Card12_086 extends AbstractAttachable {
public Card12_086() {
super(Side.SHADOW, CardType.POSSESSION, 2, Culture.MORIA, PossessionClass.HAND_WEAPON, "Cave Troll's Hammer", true);
}
@Override
protected Filterable getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self) {
return Filters.and(Culture.ORC, Race.TROLL);
}
@Override
public Modifier getAlwaysOnModifier(PhysicalCard self) {
return new StrengthModifier(self, Filters.hasAttached(self), 3);
}
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(final LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.played(game, effectResult, self)) {
final RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new ForEachYouSpotEffect(self.getOwner(), Keyword.LURKER) {
@Override
protected void spottedCards(int spotCount) {
for (int i = 0; i < spotCount; i++)
action.appendEffect(
new ChooseAndExertCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 1, 1, CardType.COMPANION));
}
});
return Collections.singletonList(action);
}
return null;
}
}