"Morgul Axe"
This commit is contained in:
@@ -38,7 +38,7 @@ public class Card7_186 extends AbstractAttachable {
|
||||
modifiers.add(
|
||||
new StrengthModifier(self, Filters.hasAttached(self), 2));
|
||||
modifiers.add(
|
||||
new KeywordModifier(self, Filters.hasAttached(self), new SpotCondition(Keyword.RING_BEARER, Filters.wounds(2)), Keyword.DAMAGE, 1));
|
||||
new KeywordModifier(self, Filters.hasAttached(self), new SpotCondition(Keyword.RING_BEARER, Filters.hasWounds(2)), Keyword.DAMAGE, 1));
|
||||
return modifiers;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -441,7 +441,7 @@ public class Filters {
|
||||
};
|
||||
}
|
||||
|
||||
public static Filter wounds(final int wounds) {
|
||||
public static Filter hasWounds(final int wounds) {
|
||||
return new Filter() {
|
||||
@Override
|
||||
public boolean accepts(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard physicalCard) {
|
||||
@@ -450,7 +450,7 @@ public class Filters {
|
||||
};
|
||||
}
|
||||
|
||||
public static final Filter wounded = Filters.wounds(1);
|
||||
public static final Filter wounded = Filters.hasWounds(1);
|
||||
|
||||
public static Filter cardId(final int cardId) {
|
||||
return new Filter() {
|
||||
|
||||
Reference in New Issue
Block a user