- "Gondorian Blade" no longer gives Damage +2 if bearer is a ranger and at a river.
This commit is contained in:
@@ -2,6 +2,7 @@ package com.gempukku.lotro.cards.set11.gondor;
|
||||
|
||||
import com.gempukku.lotro.cards.AbstractAttachableFPPossession;
|
||||
import com.gempukku.lotro.cards.modifiers.conditions.LocationCondition;
|
||||
import com.gempukku.lotro.cards.modifiers.conditions.NotCondition;
|
||||
import com.gempukku.lotro.common.*;
|
||||
import com.gempukku.lotro.filters.Filters;
|
||||
import com.gempukku.lotro.game.PhysicalCard;
|
||||
@@ -35,7 +36,7 @@ public class Card11_059 extends AbstractAttachableFPPossession {
|
||||
protected List<? extends Modifier> getNonBasicStatsModifiers(PhysicalCard self) {
|
||||
List<Modifier> modifiers = new LinkedList<Modifier>();
|
||||
modifiers.add(
|
||||
new KeywordModifier(self, Filters.and(Filters.hasAttached(self), Keyword.RANGER), Keyword.DAMAGE, 1));
|
||||
new KeywordModifier(self, Filters.and(Filters.hasAttached(self), Keyword.RANGER), new NotCondition(new LocationCondition(Keyword.RIVER)), Keyword.DAMAGE, 1));
|
||||
modifiers.add(
|
||||
new KeywordModifier(self, Filters.hasAttached(self), new LocationCondition(Keyword.RIVER), Keyword.DAMAGE, 1));
|
||||
return modifiers;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<pre style="font-size:80%">
|
||||
<b>11 Feb. 2012</b>
|
||||
- "Hurried Barrows" now gives the bonus to companions only if they are mounted.
|
||||
- "Gondorian Blade" no longer gives Damage +2 if bearer is a ranger and at a river.
|
||||
|
||||
<b>10 Feb. 2012</b>
|
||||
- "O Elbereth! Gilthoniel!" will not allow to cancel a skirmish now in formats that do not allow that.
|
||||
|
||||
Reference in New Issue
Block a user