- "Scintillating Bird" now should discard the cards, if not enough cards of the specified type are revealed.

This commit is contained in:
marcins78@gmail.com
2013-01-01 18:48:21 +00:00
parent 6dd9f37c23
commit ee537f5e72
2 changed files with 7 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ package com.gempukku.lotro.cards.set17.gandalf;
import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.DiscardTopCardFromDeckEffect;
import com.gempukku.lotro.cards.effects.RevealTopCardsOfDrawDeckEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndPutCardFromDeckIntoHandEffect;
@@ -58,6 +59,9 @@ public class Card17_023 extends AbstractPermanent {
Side side = (index == 0) ? Side.FREE_PEOPLE : Side.SHADOW;
if (Filters.filter(cards, game.getGameState(), game.getModifiersQuerying(), side).size() >= 2) {
putCardsIntoHandFromDeck(action, playerId, game, cards);
} else {
action.appendEffect(
new DiscardTopCardFromDeckEffect(self, playerId, cards.size(), false));
}
}
});

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>01 Jan. 2013</b>
- "Scintillating Bird" now should discard the cards, if not enough cards of the specified type are revealed.
<b>23 Dec. 2012</b>
- Merchant now sells all the cards, but the out-of-stock cards are substantially more expensive to buy.