(fit, module, context, projectionRange, **kwargs)
| 21751 | |
| 21752 | @staticmethod |
| 21753 | def handler(fit, module, context, projectionRange, **kwargs): |
| 21754 | module.boostItemAttr('maxTargetRangeBonus', module.getModifiedItemAttr('overloadSensorModuleStrengthBonus'), **kwargs) |
| 21755 | module.boostItemAttr('scanResolutionBonus', module.getModifiedItemAttr('overloadSensorModuleStrengthBonus'), |
| 21756 | stackingPenalties=True, **kwargs) |
| 21757 | |
| 21758 | for scanType in ('Gravimetric', 'Magnetometric', 'Radar', 'Ladar'): |
| 21759 | module.boostItemAttr( |
| 21760 | 'scan{}StrengthPercent'.format(scanType), |
| 21761 | module.getModifiedItemAttr('overloadSensorModuleStrengthBonus'), |
| 21762 | stackingPenalties=True, **kwargs) |
| 21763 | |
| 21764 | |
| 21765 | class Effect5758(BaseEffect): |
nothing calls this directly
no test coverage detected