"Hurry Hobbitses"

This commit is contained in:
marcins78@gmail.com
2012-01-25 17:52:23 +00:00
parent 8cd0c5c553
commit 390164ac78

View File

@@ -0,0 +1,33 @@
package com.gempukku.lotro.cards.set15.gollum;
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.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
/**
* Set: The Hunters
* Side: Free
* Culture: Gollum
* Twilight Cost: 1
* Type: Event • Skirmish
* Game Text: Make Smeagol strength +1 for each Ring-bound Hobbit you can spot.
*/
public class Card15_045 extends AbstractEvent {
public Card15_045() {
super(Side.FREE_PEOPLE, 1, Culture.GOLLUM, "Hurry Hobbitses", 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(Race.HOBBIT, Keyword.RING_BOUND), Filters.smeagol));
return action;
}
}