(fit, src, context, projectionRange, **kwargs)
| 34134 | |
| 34135 | @staticmethod |
| 34136 | def handler(fit, src, context, projectionRange, **kwargs): |
| 34137 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name in ('Propulsion Module', 'Micro Jump Drive'), |
| 34138 | 'power', src.getModifiedItemAttr('flagCruiserFittingBonusPropMods'), **kwargs) |
| 34139 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name in ('Propulsion Module', 'Micro Jump Drive'), |
| 34140 | 'cpu', src.getModifiedItemAttr('flagCruiserFittingBonusPropMods'), **kwargs) |
| 34141 | |
| 34142 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name in ('Target Painter', 'Scan Probe Launcher'), |
| 34143 | 'cpu', src.getModifiedItemAttr('flagCruiserFittingBonusPainterProbes'), **kwargs) |
| 34144 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name in ('Target Painter', 'Scan Probe Launcher'), |
| 34145 | 'power', src.getModifiedItemAttr('flagCruiserFittingBonusPainterProbes'), **kwargs) |
| 34146 | |
| 34147 | |
| 34148 | class Effect7050(BaseEffect): |
nothing calls this directly
no test coverage detected