(fit, container, context, projectionRange, **kwargs)
| 4763 | |
| 4764 | @staticmethod |
| 4765 | def handler(fit, container, context, projectionRange, **kwargs): |
| 4766 | level = container.level if 'skill' in context else 1 |
| 4767 | penalize = False if 'skill' in context or 'implant' in context or 'booster' in context else True |
| 4768 | fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill('Missile Launcher Operation'), |
| 4769 | 'aoeVelocity', container.getModifiedItemAttr('aoeVelocityBonus') * level, |
| 4770 | stackingPenalties=penalize, **kwargs) |
| 4771 | |
| 4772 | |
| 4773 | class Effect1592(BaseEffect): |
nothing calls this directly
no test coverage detected