"No Safe Places"

This commit is contained in:
marcins78@gmail.com
2011-11-01 15:25:43 +00:00
parent 2fdddfd120
commit dfc6904ce1

View File

@@ -0,0 +1,67 @@
package com.gempukku.lotro.cards.set7.gollum;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.RevealAndChooseCardsFromOpponentHandEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardCardsFromHandEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseOpponentEffect;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
/**
* Set: The Return of the King
* Side: Free
* Culture: Gollum
* Twilight Cost: 2
* Type: Event • Regroup
* Game Text: Exert Smeagol to reveal an opponent's hand. That opponent must discard a card from hand for each culture
* revealed.
*/
public class Card7_066 extends AbstractEvent {
public Card7_066() {
super(Side.FREE_PEOPLE, 2, Culture.GOLLUM, "No Safe Places", Phase.REGROUP);
}
@Override
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
return super.checkPlayRequirements(playerId, game, self, twilightModifier)
&& PlayConditions.canExert(self, game, Filters.smeagol);
}
@Override
public PlayEventAction getPlayCardAction(final String playerId, final LotroGame game, final PhysicalCard self, int twilightModifier) {
final PlayEventAction action = new PlayEventAction(self);
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Filters.smeagol));
action.appendEffect(
new ChooseOpponentEffect(playerId) {
@Override
protected void opponentChosen(final String opponentId) {
action.insertEffect(
new RevealAndChooseCardsFromOpponentHandEffect(action, playerId, opponentId, self, "Opponent's hand", Filters.none, 0, 0) {
@Override
protected void cardsSelected(List<PhysicalCard> selectedCards) {
Set<Culture> cultures = new HashSet<Culture>();
for (PhysicalCard physicalCard : game.getGameState().getHand(opponentId))
cultures.add(physicalCard.getBlueprint().getCulture());
int cultureCount = cultures.size();
action.appendEffect(
new ChooseAndDiscardCardsFromHandEffect(action, opponentId, true, cultureCount));
}
});
}
});
return action;
}
}