(fit, ship, context, projectionRange, **kwargs)
| 33866 | |
| 33867 | @staticmethod |
| 33868 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 33869 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Structure Guided Bomb Launcher', |
| 33870 | 'speed', ship.getModifiedItemAttr('structureAoERoFRoleBonus'), **kwargs) |
| 33871 | for attr in ['duration', 'durationTargetIlluminationBurstProjector', 'durationWeaponDisruptionBurstProjector', |
| 33872 | 'durationECMJammerBurstProjector', 'durationSensorDampeningBurstProjector', 'capacitorNeed']: |
| 33873 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Structure Burst Projector', |
| 33874 | attr, ship.getModifiedItemAttr('structureAoERoFRoleBonus'), **kwargs) |
| 33875 | |
| 33876 | |
| 33877 | class Effect7031(BaseEffect): |
nothing calls this directly
no test coverage detected