"War Must Be"

This commit is contained in:
marcins78@gmail.com
2011-10-17 16:31:58 +00:00
parent f34b299519
commit fc7765410e

View File

@@ -0,0 +1,33 @@
package com.gempukku.lotro.cards.set5.gondor;
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.CardMatchesEvaluator;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
/**
* Set: Battle of Helm's Deep
* Side: Free
* Culture: Gondor
* Twilight Cost: 0
* Type: Event
* Game Text: Skirmish: Make a [GONDOR] Man strength +2 (or +4 if skirmishing a minion bearing a [GONDOR] fortification).
*/
public class Card5_043 extends AbstractEvent {
public Card5_043() {
super(Side.FREE_PEOPLE, 0, Culture.GONDOR, "War Must Be", Phase.SKIRMISH);
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId,
new CardMatchesEvaluator(2, 4, Filters.inSkirmishAgainst(CardType.MINION, Filters.hasAttached(Culture.GONDOR, Keyword.FORTIFICATION))), Culture.GONDOR, Race.MAN));
return action;
}
}