(fit, module, context, projectionRange, **kwargs)
| 31845 | |
| 31846 | @staticmethod |
| 31847 | def handler(fit, module, context, projectionRange, **kwargs): |
| 31848 | fit.modules.filteredItemMultiply( |
| 31849 | lambda mod: mod.item.requiresSkill('High Speed Maneuvering') or mod.item.requiresSkill('Afterburner'), |
| 31850 | 'speedFactor', |
| 31851 | 1 / module.getModifiedItemAttr('modeVelocityPostDiv'), |
| 31852 | stackingPenalties=True, |
| 31853 | penaltyGroup='postDiv', **kwargs) |
| 31854 | |
| 31855 | |
| 31856 | class Effect6807(BaseEffect): |
nothing calls this directly
no test coverage detected