"For Rohan!"

This commit is contained in:
marcins78
2013-02-06 13:21:11 +00:00
parent 345783be9b
commit 26dd9f6190

View File

@@ -0,0 +1,30 @@
package com.gempukku.lotro.cards.set20.rohan;
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;
/**
* 1
* For Rohan!
* Rohan Event • Skirmish
* Make a [Rohan] Man strength +1 for each villager you can spot.
*/
public class Card20_325 extends AbstractEvent {
public Card20_325() {
super(Side.FREE_PEOPLE, 1, Culture.ROHAN, "For Rohan!", 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(Keyword.VILLAGER), Culture.ROHAN, Race.MAN));
return action;
}
}