"Warmed Up a Bit"

This commit is contained in:
marcins78@gmail.com
2011-10-16 20:08:37 +00:00
parent 2e7ead2751
commit be62ca64fd

View File

@@ -0,0 +1,32 @@
package com.gempukku.lotro.cards.set4.shire;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardCardsFromPlayEffect;
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 Two Towers
* Side: Free
* Culture: Shire
* Twilight Cost: 0
* Type: Event
* Game Text: Stealth. Skirmish: Discard an unbound Hobbit.
*/
public class Card4_322 extends AbstractEvent {
public Card4_322() {
super(Side.FREE_PEOPLE, 0, Culture.SHIRE, "Warmed Up a Bit", Phase.SKIRMISH);
addKeyword(Keyword.STEALTH);
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseAndDiscardCardsFromPlayEffect(action, playerId, 1, 1, Race.HOBBIT, Filters.unboundCompanion));
return action;
}
}