(fit, module, context, projectionRange, **kwargs)
| 23431 | |
| 23432 | @staticmethod |
| 23433 | def handler(fit, module, context, projectionRange, **kwargs): |
| 23434 | for scanType in ('Gravimetric', 'Magnetometric', 'Radar', 'Ladar'): |
| 23435 | fit.ship.multiplyItemAttr( |
| 23436 | 'scan{}Strength'.format(scanType), |
| 23437 | 1 / (module.getModifiedItemAttr('mode{}StrengthPostDiv'.format(scanType)) or 1), |
| 23438 | stackingPenalties=True, |
| 23439 | penaltyGroup='postDiv', |
| 23440 | **kwargs) |
| 23441 | |
| 23442 | |
| 23443 | class Effect6014(BaseEffect): |
nothing calls this directly
no test coverage detected