- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.

This commit is contained in:
marcins78
2013-03-12 10:26:11 +00:00
parent c212a97be7
commit 0d5985c19d
2 changed files with 5 additions and 2 deletions

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>12 Mar. 2013</b>
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.
<b>11 Mar. 2013</b>
- Second Edition is playable now.
- "Galadriel, White Lady of Lorien" no longer requires to exert another elf.

View File

@@ -39,9 +39,9 @@ public class Card20_194 extends AbstractAttachableFPPossession {
protected List<? extends Modifier> getNonBasicStatsModifiers(PhysicalCard self) {
List<Modifier> modifiers = new LinkedList<Modifier>();
modifiers.add(
new StrengthModifier(self, Filters.hasAttached(self, Filters.inSkirmishAgainst(Race.NAZGUL)), 2));
new StrengthModifier(self, Filters.and (Filters.hasAttached(self), Filters.inSkirmishAgainst(Race.NAZGUL)), 2));
modifiers.add(
new KeywordModifier(self, Filters.hasAttached(self, Filters.inSkirmishAgainst(Race.NAZGUL)), Keyword.DAMAGE, 1));
new KeywordModifier(self, Filters.and(Filters.hasAttached(self), Filters.inSkirmishAgainst(Race.NAZGUL)), Keyword.DAMAGE, 1));
return modifiers;
}
}