"Guidance of the Istari"

This commit is contained in:
marcins78@gmail.com
2012-02-10 11:40:50 +00:00
parent fc1963d5ce
commit 750716da2d

View File

@@ -0,0 +1,31 @@
package com.gempukku.lotro.cards.set17.gandalf;
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: Rise of Saruman
* Side: Free
* Culture: Gandalf
* Twilight Cost: 1
* Type: Event • Skirmish
* Game Text: Make a [GANDALF] companion strength +1 for each [GANDALF] Man you can spot.
*/
public class Card17_019 extends AbstractEvent {
public Card17_019() {
super(Side.FREE_PEOPLE, 1, Culture.GANDALF, "Guidance of the Istari", 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(Culture.GANDALF, Race.MAN), Culture.GANDALF, CardType.COMPANION));
return action;
}
}