(fit, ship, context, projectionRange, **kwargs)
| 41153 | |
| 41154 | @staticmethod |
| 41155 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 41156 | # Get pilot sec status bonus directly here, instead of going through the intermediary effects |
| 41157 | try: |
| 41158 | sec_status = ship.owner.getPilotSecurity(low_limit=-10, high_limit=0) |
| 41159 | except (KeyboardInterrupt, SystemExit): |
| 41160 | raise |
| 41161 | except: |
| 41162 | return |
| 41163 | bonus = ship.getModifiedItemAttr('ATcruiserScramblerDisruptorBonus') * sec_status |
| 41164 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Warp Scrambler', 'maxRange', bonus, **kwargs) |
| 41165 | |
| 41166 | |
| 41167 | class Effect12203(BaseEffect): |
nothing calls this directly
no test coverage detected