"The Beckoning Shadow"

This commit is contained in:
marcins78@gmail.com
2011-12-12 12:58:37 +00:00
parent 44c40e3b22
commit 829e492f41

View File

@@ -0,0 +1,59 @@
package com.gempukku.lotro.cards.set12.orc;
import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayPermanentAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.common.CardType;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.common.Zone;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.RequiredTriggerAction;
import com.gempukku.lotro.logic.effects.CorruptRingBearerEffect;
import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* Set: Black Rider
* Side: Shadow
* Culture: Orc
* Twilight Cost: 0
* Type: Condition • Support Area
* Game Text: To play, exert an [ORC] minion. If you can spot 5 burdens, and the Free Peoples player has no cards in his
* or her draw deck, the Ring-bearer is corrupted.
*/
public class Card12_083 extends AbstractPermanent {
public Card12_083() {
super(Side.SHADOW, 0, CardType.CONDITION, Culture.ORC, Zone.SUPPORT, "The Beckoning 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.canExert(self, game, Culture.ORC, CardType.MINION);
}
@Override
public PlayPermanentAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayPermanentAction action = super.getPlayCardAction(playerId, game, self, twilightModifier, ignoreRoamingPenalty);
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Culture.ORC, CardType.MINION));
return action;
}
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (game.getGameState().getBurdens() >= 5
&& game.getGameState().getDeck(game.getGameState().getCurrentPlayerId()).size() == 0) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new CorruptRingBearerEffect());
return Collections.singletonList(action);
}
return null;
}
}