"Brutality"

This commit is contained in:
marcins78@gmail.com
2011-12-06 12:46:20 +00:00
parent 7b716e3d1c
commit bbebfea7d7

View File

@@ -0,0 +1,31 @@
package com.gempukku.lotro.cards.set11.uruk_hai;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.cards.modifiers.evaluator.CountSpottableEvaluator;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
/**
* Set: Shadows
* Side: Shadow
* Culture: Uruk-hai
* Twilight Cost: 2
* Type: Event • Skirmish
* Game Text: Make an [URUK-HAI] minion strength +1 for each battleground site you can spot.
*/
public class Card11_180 extends AbstractEvent {
public Card11_180() {
super(Side.SHADOW, 2, Culture.URUK_HAI, "Brutality", Phase.SKIRMISH);
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId, new CountSpottableEvaluator(CardType.SITE, Keyword.BATTLEGROUND), Culture.URUK_HAI, CardType.MINION));
return action;
}
}