(fit, module, context, projectionRange, **kwargs)
| 7557 | |
| 7558 | @staticmethod |
| 7559 | def handler(fit, module, context, projectionRange, **kwargs): |
| 7560 | fit.ship.boostItemAttr('maxTargetRange', module.getModifiedItemAttr('maxTargetRangeBonus'), |
| 7561 | stackingPenalties=True, **kwargs) |
| 7562 | fit.ship.boostItemAttr('scanResolution', module.getModifiedItemAttr('scanResolutionBonus'), |
| 7563 | stackingPenalties=True, **kwargs) |
| 7564 | |
| 7565 | for scanType in ('Gravimetric', 'Magnetometric', 'Radar', 'Ladar'): |
| 7566 | fit.ship.boostItemAttr( |
| 7567 | 'scan{}Strength'.format(scanType), |
| 7568 | module.getModifiedItemAttr('scan{}StrengthPercent'.format(scanType)), |
| 7569 | stackingPenalties=True, **kwargs) |
| 7570 | |
| 7571 | |
| 7572 | class Effect2688(BaseEffect): |
nothing calls this directly
no test coverage detected