(fit, container, context, projectionRange, **kwargs)
| 10919 | |
| 10920 | @staticmethod |
| 10921 | def handler(fit, container, context, projectionRange, **kwargs): |
| 10922 | level = container.level if 'skill' in context else 1 |
| 10923 | penalized = False if 'skill' in context else True |
| 10924 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Sensor Dampener', |
| 10925 | 'scanResolutionBonus', |
| 10926 | container.getModifiedItemAttr('scanSkillEwStrengthBonus') * level, |
| 10927 | stackingPenalties=penalized, **kwargs) |
| 10928 | |
| 10929 | |
| 10930 | class Effect3587(BaseEffect): |
nothing calls this directly
no test coverage detected