- "Easterling Banner-bearer" should have his strength correctly calculated.
This commit is contained in:
@@ -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))
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user