- "Cave Troll of Moria" from set 20 now reduces the twilight cost per card discarded, not increases it.

This commit is contained in:
marcins78
2013-03-12 10:52:23 +00:00
parent b98c2faa4b
commit fbb559fa2e
2 changed files with 2 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
- "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.
- "Ominous Landscape" now costs 0 twilight (per card text).
- "Cave Troll of Moria" from set 20 now reduces the twilight cost per card discarded, not increases it.
<b>11 Mar. 2013</b>
- Second Edition is playable now.

View File

@@ -30,7 +30,7 @@ public class Card20_256 extends AbstractMinion {
@Override
protected int getPotentialExtraPaymentDiscount(String playerId, LotroGame game, PhysicalCard self) {
return -Filters.filter(game.getGameState().getHand(playerId), game.getGameState(), game.getModifiersQuerying(), Culture.MORIA, Filters.not(self)).size();
return Filters.filter(game.getGameState().getHand(playerId), game.getGameState(), game.getModifiersQuerying(), Culture.MORIA, Filters.not(self)).size();
}
@Override