"Sauron's Might"

This commit is contained in:
marcins78@gmail.com
2012-03-09 12:06:27 +00:00
parent cfceb2d931
commit 0cbb5e1cb3

View File

@@ -0,0 +1,70 @@
package com.gempukku.lotro.cards.set19.sauron;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.actions.SubCostToEffectAction;
import com.gempukku.lotro.cards.effects.OptionalEffect;
import com.gempukku.lotro.cards.effects.PutPlayedEventOnBottomOfDeckEffect;
import com.gempukku.lotro.cards.effects.RemoveTwilightEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndRemoveCultureTokensFromCardEffect;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.effects.AddThreatsEffect;
import com.gempukku.lotro.logic.effects.StackActionEffect;
import com.gempukku.lotro.logic.timing.UnrespondableEffect;
/**
* Set: Ages End
* Side: Shadow
* Culture: Sauron
* Twilight Cost: 0
* Type: Event • Shadow
* Game Text: Remove a Free Peoples culture token to add a threat. When you play this event, you may remove (1) to place
* this on the bottom of your draw deck instead of in your discard pile.
*/
public class Card19_027 extends AbstractEvent {
public Card19_027() {
super(Side.SHADOW, 0, Culture.SAURON, "Sauron's Might", Phase.SHADOW);
}
@Override
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int withTwilightRemoved, int twilightModifier, boolean ignoreRoamingPenalty, boolean ignoreCheckingDeadPile) {
return super.checkPlayRequirements(playerId, game, self, withTwilightRemoved, twilightModifier, ignoreRoamingPenalty, ignoreCheckingDeadPile)
&& PlayConditions.canRemoveAnyCultureTokens(game, 1, Side.FREE_PEOPLE);
}
@Override
public PlayEventAction getPlayCardAction(final String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
final PlayEventAction action = new PlayEventAction(self);
action.appendCost(
new ChooseAndRemoveCultureTokensFromCardEffect(self, playerId, null, 1, Side.FREE_PEOPLE));
action.appendEffect(
new AddThreatsEffect(playerId, self, 1));
action.appendEffect(
new UnrespondableEffect() {
@Override
protected void doPlayEffect(LotroGame game) {
if (game.getGameState().getTwilightPool() >= 1) {
SubCostToEffectAction subAction = new SubCostToEffectAction(action);
subAction.appendCost(
new RemoveTwilightEffect(1));
subAction.appendEffect(
new PutPlayedEventOnBottomOfDeckEffect(action));
action.appendEffect(
new OptionalEffect(action, playerId,
new StackActionEffect(subAction) {
@Override
public String getText(LotroGame game) {
return "Remove (1) to place this on the bottom of your draw deck";
}
}));
}
}
});
return action;
}
}