(fit, container, context, projectionRange, **kwargs)
| 2217 | |
| 2218 | @staticmethod |
| 2219 | def handler(fit, container, context, projectionRange, **kwargs): |
| 2220 | level = container.level if 'skill' in context else 1 |
| 2221 | penalized = False if 'skill' in context or 'implant' in context or 'booster' in context else True |
| 2222 | fit.ship.boostItemAttr('scanResolution', container.getModifiedItemAttr('scanResolutionBonus') * level, |
| 2223 | stackingPenalties=penalized, **kwargs) |
| 2224 | |
| 2225 | |
| 2226 | class Effect706(BaseEffect): |
nothing calls this directly
no test coverage detected