- "Unexpected Visitor" now also discards a minion in addition to removing twilight from twilight pool.

This commit is contained in:
marcins78@gmail.com
2012-04-25 22:04:39 +00:00
parent 07b334ff95
commit 4c24e57537
2 changed files with 6 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import com.gempukku.lotro.cards.AbstractAttachable;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.RemoveTwilightEffect;
import com.gempukku.lotro.cards.effects.SelfDiscardEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardCardsFromPlayEffect;
import com.gempukku.lotro.cards.modifiers.AddActionToCardModifier;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
@@ -64,6 +65,8 @@ public class Card7_126 extends AbstractAttachable {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new SelfDiscardEffect(self));
action.appendEffect(
new ChooseAndDiscardCardsFromPlayEffect(action, playerId, 1, 1, CardType.MINION));
action.appendEffect(
new RemoveTwilightEffect(4));
return Collections.singletonList(action);

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>25 Apr. 2012</b>
- "Unexpected Visitor" now also discards a minion in addition to removing twilight from twilight pool.
<b>24 Apr. 2012</b>
- "Bill the Pony" no longer is discarded when moving to Underground site, before it decreases the shadow number of the
site, when adding twilight for moving.