(fit, implant, context, projectionRange, **kwargs)
| 6922 | |
| 6923 | @staticmethod |
| 6924 | def handler(fit, implant, context, projectionRange, **kwargs): |
| 6925 | for type in ('Gravimetric', 'Magnetometric', 'Radar', 'Ladar'): |
| 6926 | sensorType = 'scan{0}Strength'.format(type) |
| 6927 | sensorBoost = 'scan{0}StrengthPercent'.format(type) |
| 6928 | if sensorBoost in implant.item.attributes: |
| 6929 | fit.ship.boostItemAttr(sensorType, implant.getModifiedItemAttr(sensorBoost), **kwargs) |
| 6930 | |
| 6931 | |
| 6932 | class Effect2302(BaseEffect): |
nothing calls this directly
no test coverage detected