(fit, module, context, projectionRange, **kwargs)
| 23991 | |
| 23992 | @staticmethod |
| 23993 | def handler(fit, module, context, projectionRange, **kwargs): |
| 23994 | fit.ship.forceItemAttr('disallowAssistance', module.getModifiedItemAttr('disallowAssistance')) |
| 23995 | for scanType in ('Gravimetric', 'Magnetometric', 'Radar', 'Ladar'): |
| 23996 | fit.ship.boostItemAttr( |
| 23997 | 'scan{}Strength'.format(scanType), |
| 23998 | module.getModifiedItemAttr('scan{}StrengthPercent'.format(scanType)), |
| 23999 | stackingPenalties=True, **kwargs) |
| 24000 | |
| 24001 | |
| 24002 | class Effect6076(BaseEffect): |
nothing calls this directly
no test coverage detected