(fit, container, context, projectionRange, **kwargs)
| 8244 | |
| 8245 | @staticmethod |
| 8246 | def handler(fit, container, context, projectionRange, **kwargs): |
| 8247 | level = container.level if 'skill' in context else 1 |
| 8248 | attrs = ('boosterAOEVelocityPenalty', 'boosterMissileAOECloudPenalty', 'boosterMissileVelocityPenalty') |
| 8249 | for attr in attrs: |
| 8250 | fit.boosters.filteredItemBoost(lambda booster: True, attr, |
| 8251 | container.getModifiedItemAttr('boosterAttributeModifier') * level, **kwargs) |
| 8252 | |
| 8253 | |
| 8254 | class Effect2778(BaseEffect): |
nothing calls this directly
no test coverage detected