(fit, container, context, projectionRange, **kwargs)
| 8223 | |
| 8224 | @staticmethod |
| 8225 | def handler(fit, container, context, projectionRange, **kwargs): |
| 8226 | level = container.level if 'skill' in context else 1 |
| 8227 | attrs = ('boosterCapacitorCapacityPenalty', 'boosterMaxVelocityPenalty') |
| 8228 | for attr in attrs: |
| 8229 | fit.boosters.filteredItemBoost(lambda booster: True, attr, |
| 8230 | container.getModifiedItemAttr('boosterAttributeModifier') * level, **kwargs) |
| 8231 | |
| 8232 | |
| 8233 | class Effect2776(BaseEffect): |
nothing calls this directly
no test coverage detected