- "Easterling Banner-bearer" should have his strength correctly calculated.

This commit is contained in:
marcins78@gmail.com
2012-01-15 20:50:02 +00:00
parent 4a8414b8c5
commit eed52ee0f0
2 changed files with 4 additions and 3 deletions

View File

@@ -30,12 +30,12 @@ public class Card12_063 extends AbstractMinion {
}
@Override
public Modifier getAlwaysOnModifier(PhysicalCard self) {
public Modifier getAlwaysOnModifier(final PhysicalCard self) {
return new StrengthModifier(self, self, null,
new Evaluator() {
@Override
public int evaluateExpression(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard cardAffected) {
final PhysicalCard firstActive = Filters.findFirstActive(gameState, modifiersQuerying, Filters.inSkirmishAgainst(CardType.COMPANION, Filters.wounded));
final PhysicalCard firstActive = Filters.findFirstActive(gameState, modifiersQuerying, CardType.COMPANION, Filters.wounded, Filters.inSkirmishAgainst(self));
if (firstActive != null) {
int wounds = gameState.getWounds(firstActive);
if (Filters.maxResistance(2).accepts(gameState, modifiersQuerying, firstActive))

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>15 Jan. 2012</b>
- "Hobbit Farmer" and other allies copying site text should now be able to activate the site phase actions.
- "Hobbit Farmer" and other allies copying site text should now be able to activate the site phase actions.
- "Easterling Banner-bearer" should have his strength correctly calculated.
<b>14 Jan. 2012</b>
- "Refuge" now discards companion from hand, rather than condition to heal a companion.