Fix to 15C82 "Grousing Hillman"

Previously, minion was only strength +2 while owner controls a site
This commit is contained in:
PhallenCassidy
2019-07-16 20:13:06 -04:00
committed by GitHub
parent b4543826ab
commit 30fa4a4bcc

View File

@@ -35,7 +35,7 @@ public class Card15_082 extends AbstractMinion {
public List<? extends Modifier> getAlwaysOnModifiers(LotroGame game, PhysicalCard self) {
List<Modifier> modifiers = new LinkedList<Modifier>();
modifiers.add(
new StrengthModifier(self, self, new SpotCondition(Filters.siteControlled(self.getOwner())), 2));
new StrengthModifier(self, self, new SpotCondition(Filters.siteControlled(self.getOwner())), 3));
modifiers.add(
new KeywordModifier(self, self, new SpotCondition(Filters.siteControlled(self.getOwner())), Keyword.FIERCE, 1));
return modifiers;