"Feral Ride"

This commit is contained in:
marcins78@gmail.com
2012-02-16 02:47:22 +00:00
parent adae7532c9
commit e0fb7edf11

View File

@@ -0,0 +1,33 @@
package com.gempukku.lotro.cards.set17.orc;
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: Rise of Saruman
* Side: Shadow
* Culture: Orc
* Twilight Cost: 1
* Type: Event • Skirmish
* Game Text: Make an [ORC] minion strength +2 (or +4 if it is mounted).
*/
public class Card17_070 extends AbstractEvent {
public Card17_070() {
super(Side.SHADOW, 1, Culture.ORC, "Feral Ride", 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 CardMatchesEvaluator(2, 4, Filters.mounted), Race.ORC, CardType.MINION));
return action;
}
}