- "My Axe Is Notched" and "Final Count" should properly grant their strength bonuses now.

This commit is contained in:
marcins78@gmail.com
2011-11-07 10:14:03 +00:00
parent ad47e34b14
commit 0b285a8a86
3 changed files with 5 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ public class Card4_052 extends AbstractPermanent {
new StrengthModifier(self, Filters.gimli, null,
new Evaluator() {
@Override
public int evaluateExpression(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard self) {
public int evaluateExpression(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard card) {
PhysicalCard finalCount = Filters.findFirstActive(gameState, modifiersQuerying, Filters.name("Final Count"));
if (finalCount != null)
return Math.min(3, Math.min(gameState.getTokenCount(self, Token.DWARVEN), gameState.getTokenCount(finalCount, Token.ELVEN)));

View File

@@ -39,7 +39,7 @@ public class Card4_069 extends AbstractPermanent {
new StrengthModifier(self, Filters.legolas, null,
new Evaluator() {
@Override
public int evaluateExpression(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard self) {
public int evaluateExpression(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard card) {
PhysicalCard myAxeIsNotched = Filters.findFirstActive(gameState, modifiersQuerying, Filters.name("My Axe Is Notched"));
if (myAxeIsNotched != null)
return Math.min(3, Math.min(gameState.getTokenCount(self, Token.ELVEN), gameState.getTokenCount(myAxeIsNotched, Token.DWARVEN)));

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>7 Nov. 2011</b>
- "My Axe Is Notched" and "Final Count" should properly grant their strength bonuses now.
<b>6 Nov. 2011</b>
- "Moria Archer Troop" no longer adds archery if it can spot only non-Moria other archer.
- "Morannon" no longer decreases the cost of each SAURON Orc on site 4T, only the first one.