Corrected "Battle Fury" strength modifier

Previously gave +4 strength for bearing any follower, rather than a [DWARVEN] follower
This commit is contained in:
PhallenCassidy
2017-11-28 12:27:45 -05:00
committed by GitHub
parent d4ba1ff25e
commit ceaa800d79

View File

@@ -29,7 +29,7 @@ public class Card30_003 extends AbstractEvent {
final PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId,
new CardMatchesEvaluator(3, 4, Filters.hasAttached(CardType.FOLLOWER)), Race.DWARF, Filters.or(CardType.COMPANION, CardType.ALLY)));
new CardMatchesEvaluator(3, 4, Filters.hasAttached(Filters.and(CardType.FOLLOWER, Culture.DWARVEN))), Race.DWARF, Filters.or(CardType.COMPANION, CardType.ALLY)));
return action;
}
}
}