"Engrossed Hillman"

This commit is contained in:
marcins78@gmail.com
2012-01-27 15:34:57 +00:00
parent 92f0ca21eb
commit 2c6384a660

View File

@@ -0,0 +1,51 @@
package com.gempukku.lotro.cards.set15.men;
import com.gempukku.lotro.cards.AbstractMinion;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.TakeControlOfASiteEffect;
import com.gempukku.lotro.cards.modifiers.evaluator.CountCulturesEvaluator;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Race;
import com.gempukku.lotro.common.Side;
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.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* Set: The Hunters
* Side: Shadow
* Culture: Men
* Twilight Cost: 4
* Type: Minion • Man
* Strength: 10
* Vitality: 3
* Site: 4
* Game Text: At the start of the maneuver phase, if you can spot another [MEN] Man and 8 characters (or if you can spot
* 3 Free Peoples cultures), you may take control of a site.
*/
public class Card15_078 extends AbstractMinion {
public Card15_078() {
super(4, 10, 3, 4, Race.MAN, Culture.MEN, "Engrossed Hillman");
}
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.startOfPhase(game, effectResult, Phase.MANEUVER)
&& PlayConditions.canSpot(game, Filters.not(self), Culture.MEN, Race.MAN)
&& (PlayConditions.canSpot(game, 8, Filters.character)
|| new CountCulturesEvaluator(Side.FREE_PEOPLE).evaluateExpression(game.getGameState(), game.getModifiersQuerying(), null) >= 3)) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
action.appendEffect(
new TakeControlOfASiteEffect(self, playerId));
return Collections.singletonList(action);
}
return null;
}
}