- "Eomer, Eored Captain" now correctly gets +2 strength for each wound, instead of +1.

This commit is contained in:
marcins78
2013-03-12 11:04:44 +00:00
parent 9697f6bcbe
commit af250dea34
2 changed files with 2 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
- "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.
- "Saruman, Tribal Instigator" is now a Wizard (not Man).
- "Eomer, Eored Captain" now correctly gets +2 strength for each wound, instead of +1.
<b>11 Mar. 2013</b>
- Second Edition is playable now.

View File

@@ -34,7 +34,7 @@ public class Card20_316 extends AbstractCompanion{
for (PhysicalCard physicalCard : Filters.filterActive(gameState, modifiersQuerying, CardType.MINION, Filters.inSkirmishAgainst(self))) {
count+= gameState.getWounds(physicalCard);
}
return count;
return 2*count;
}
});
}