- "Great Cost" now makes the FP player to put the card from hand on top of the deck and also the condition discards

itself.
This commit is contained in:
marcins78@gmail.com
2012-06-27 09:27:45 +00:00
parent 8789e02ef3
commit e1b085decd
2 changed files with 7 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.PutCardFromHandOnTopOfDeckEffect;
import com.gempukku.lotro.cards.effects.SelfDiscardEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseCardsFromHandEffect;
import com.gempukku.lotro.common.*;
@@ -53,8 +54,9 @@ public class Card12_088 extends AbstractPermanent {
&& PlayConditions.canSelfDiscard(self, game)
&& PlayConditions.canSpot(game, Culture.ORC, CardType.MINION)) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(new SelfDiscardEffect(self));
action.appendEffect(
new ChooseCardsFromHandEffect(playerId, 1, 1, Filters.any) {
new ChooseCardsFromHandEffect(game.getGameState().getCurrentPlayerId(), 1, 1, Filters.any) {
@Override
protected void cardsSelected(LotroGame game, Collection<PhysicalCard> selectedCards) {
for (PhysicalCard selectedCard : selectedCards) {

View File

@@ -1,4 +1,8 @@
<pre style="font-size:80%">
<b>27 Jun. 2012</b>
- "Great Cost" now makes the FP player to put the card from hand on top of the deck and also the condition discards
itself.
<b>19 Jun. 2012</b>
- War of the Ring sealed no longer allows to cancel ring-bearer skirmish.