- "Isengard Siege Bow" now correctly gives both Vitality and Archer keyword to it's bearer.

This commit is contained in:
marcins78@gmail.com
2012-05-22 11:00:37 +00:00
parent 2ea44432e2
commit 7f1e4a36c9
2 changed files with 3 additions and 2 deletions

View File

@@ -36,9 +36,9 @@ public class Card11_191 extends AbstractAttachable {
public List<? extends Modifier> getAlwaysOnModifiers(LotroGame game, PhysicalCard self) {
List<Modifier> modifiers = new LinkedList<Modifier>();
modifiers.add(
new VitalityModifier(self, self, 1));
new VitalityModifier(self, Filters.hasAttached(self), 1));
modifiers.add(
new KeywordModifier(self, self, new LocationCondition(Keyword.BATTLEGROUND), Keyword.ARCHER, 1));
new KeywordModifier(self, Filters.hasAttached(self), new LocationCondition(Keyword.BATTLEGROUND), Keyword.ARCHER, 1));
return modifiers;
}
}

View File

@@ -2,6 +2,7 @@
<b>22 May 2012</b>
- "A Dragon's Tale" now makes shadow player exert one of his/her minions.
- "Sauron's Hatred" and other cards that play card without paying roaming penalty are now working correctly.
- "Isengard Siege Bow" now correctly gives both Vitality and Archer keyword (if at battleground) to it's bearer.
<b>16 May 2012</b>
- "Glamdring, Elven Blade" now lets the shadow player to choose a minion to exert.