- "My Axe Is Notched" and "Final Count" should properly grant their strength bonuses now.
This commit is contained in:
@@ -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)));
|
||||
|
||||
@@ -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)));
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user