This commit is contained in:
marcins78
2013-03-19 11:27:33 +00:00
parent 45f61a4035
commit f32c39d2b9
2 changed files with 5 additions and 8 deletions

View File

@@ -355,7 +355,7 @@ var set20 = {
'20_354': 'http://lotrtcg.org/coreset/sauron/despairingshadow.png',
'20_355': 'http://lotrtcg.org/coreset/sauron/everwatchful.png',
'20_356': 'http://lotrtcg.org/coreset/sauron/falloffreepeoples.png',
'20_357': 'http://lotrtcg.org/coreset/sauron/gatheringevil.png',
'20_357': 'http://lotrtcg.org/coreset/sauron/gatheringevil(r1).png',
'20_358': 'http://lotrtcg.org/coreset/sauron/gothmogvc.png',
'20_359': 'http://lotrtcg.org/coreset/sauron/gothmogswargrb.png',
'20_360': 'http://lotrtcg.org/coreset/sauron/thegreateyel.png',

View File

@@ -9,7 +9,6 @@ import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.GameUtils;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
import com.gempukku.lotro.logic.effects.RemoveThreatsEffect;
import com.gempukku.lotro.logic.timing.Action;
import java.util.Collections;
@@ -18,9 +17,10 @@ import java.util.List;
/**
* 2
* Gathering Evil
* Sauron Condition • Support Area
* Shadow: Remove a threat and exert a [Sauron] Orc to play a [Sauron] minion from your discard pile; it's twilight
* cost is -1 for each Free Peoples culture less than 3 that you can spot.
* Condition • Support Area
* Shadow: Exert a [Sauron] Orc to play a [Sauron] minion from your discard pile; it's twilight cost is -1
* for each Free Peoples culture less than 3 that you can spot.
* http://lotrtcg.org/coreset/sauron/gatheringevil(r1).png
*/
public class Card20_357 extends AbstractPermanent {
public Card20_357() {
@@ -30,13 +30,10 @@ public class Card20_357 extends AbstractPermanent {
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SHADOW, self, 0)
&& PlayConditions.canRemoveThreat(game, self, 1)
&& PlayConditions.canExert(self, game, Culture.SAURON, Race.ORC)
&& PlayConditions.canPlayFromDiscard(playerId, game,
Math.max(0, GameUtils.getSpottableFPCulturesCount(game.getGameState(), game.getModifiersQuerying(), playerId)-3), Culture.SAURON, CardType.MINION)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new RemoveThreatsEffect(self, 1));
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Culture.SAURON, Race.ORC));
action.appendEffect(