- "Moria Archer Troop" no longer adds archery if it can spot only non-Moria other archer.

This commit is contained in:
marcins78@gmail.com
2011-11-06 17:34:14 +00:00
parent 36bf48dbd9
commit 0d62a6f82c
2 changed files with 4 additions and 1 deletions

View File

@@ -36,6 +36,6 @@ public class Card2_067 extends AbstractMinion {
public List<? extends Modifier> getAlwaysOnModifiers(LotroGame game, PhysicalCard self) {
return Collections.singletonList(
new ArcheryTotalModifier(self, Side.SHADOW,
new SpotCondition(Filters.and(Filters.not(Filters.sameCard(self)), Filters.keyword(Keyword.ARCHER))), 1));
new SpotCondition(Filters.not(self), Culture.MORIA, Keyword.ARCHER), 1));
}
}

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>6 Nov. 2011</b>
- "Moria Archer Troop" no longer adds archery if it can spot only non-Moria other archer.
<b>5 Nov. 2011</b>
- Fixed issue with fierce skirmishes, where cards were not able to assign minions to skirmishes.
- Game replays now will be showing the decisions player was able to make.