- "Nine for Mortal Men" now correctly requires discarding two stacked cards instead of one.

This commit is contained in:
marcins78
2013-03-12 10:33:08 +00:00
parent 0d5985c19d
commit 5c2a2429a8
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>12 Mar. 2013</b>
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.
- "Nine for Mortal Men" now correctly requires discarding two stacked cards instead of one.
<b>11 Mar. 2013</b>
- Second Edition is playable now.

View File

@@ -30,7 +30,7 @@ import java.util.List;
*/
public class Card20_296 extends AbstractPermanent {
public Card20_296() {
super(Side.SHADOW, 0, CardType.CONDITION, Culture.WRAITH, Zone.SUPPORT, "Nine for Mortal Men", null, true);
super(Side.SHADOW, 0, CardType.ARTIFACT, Culture.WRAITH, Zone.SUPPORT, "Nine for Mortal Men", null, true);
}
@Override
@@ -82,7 +82,7 @@ public class Card20_296 extends AbstractPermanent {
&& game.getGameState().getStackedCards(self).size()>=2) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndDiscardStackedCardsEffect(action, playerId, 1, 1, self, Filters.any));
new ChooseAndDiscardStackedCardsEffect(action, playerId, 2, 2, self, Filters.any));
action.appendEffect(
new ChooseAndPutCardFromDiscardIntoHandEffect(action, playerId, 1, 1, Culture.WRAITH));
return Collections.singletonList(action);