(fit, container, context, projectionRange, **kwargs)
| 8179 | |
| 8180 | @staticmethod |
| 8181 | def handler(fit, container, context, projectionRange, **kwargs): |
| 8182 | level = container.level if 'skill' in context else 1 |
| 8183 | attrs = ('boosterArmorHPPenalty', 'boosterArmorRepairAmountPenalty') |
| 8184 | for attr in attrs: |
| 8185 | fit.boosters.filteredItemBoost(lambda booster: True, attr, |
| 8186 | container.getModifiedItemAttr('boosterAttributeModifier') * level, **kwargs) |
| 8187 | |
| 8188 | |
| 8189 | class Effect2763(BaseEffect): |
nothing calls this directly
no test coverage detected