- "Ellesar's Edict" should now correctly discard the Wraith.

This commit is contained in:
marcins78@gmail.com
2012-01-04 17:55:37 +00:00
parent 298092189c
commit 01db57123d
2 changed files with 5 additions and 2 deletions

View File

@@ -5,7 +5,6 @@ import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.ChoiceEffect;
import com.gempukku.lotro.cards.effects.SelfDiscardEffect;
import com.gempukku.lotro.cards.effects.SpotEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExhaustCharactersEffect;
import com.gempukku.lotro.common.Culture;
@@ -14,6 +13,7 @@ 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 com.gempukku.lotro.logic.effects.DiscardCardsFromPlayEffect;
import com.gempukku.lotro.logic.effects.KillEffect;
import com.gempukku.lotro.logic.timing.Effect;
@@ -48,7 +48,7 @@ public class Card8_033 extends AbstractResponseEvent {
PlayEventAction action = new PlayEventAction(self);
action.setText("Discard " + killedWraith.getBlueprint().getName());
action.appendCost(
new SelfDiscardEffect(self));
new DiscardCardsFromPlayEffect(self, killedWraith));
List<Effect> possibleCosts = new LinkedList<Effect>();
possibleCosts.add(
new ChooseAndExhaustCharactersEffect(action, playerId, 1, 1, Filters.not(killedWraith), Culture.GONDOR, Race.WRAITH) {

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>4 Jan. 2012</b>
- "Ellesar's Edict" should now correctly discard the Wraith.
<b>2 Jan. 2012</b>
- "Banner of Westernesse" now no longer allows you to heal the companion that won the skirmish.
- "Let Her Deal With Them" can now be played from discard only during Shadow phase.