(fit, src, context, projectionRange, **kwargs)
| 32451 | |
| 32452 | @staticmethod |
| 32453 | def handler(fit, src, context, projectionRange, **kwargs): |
| 32454 | groups = ('Missile Launcher Heavy', 'Missile Launcher Rapid Light', 'Missile Launcher Heavy Assault') |
| 32455 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name in groups, |
| 32456 | 'cpu', src.getModifiedItemAttr('subsystemMMissileFittingReduction'), **kwargs) |
| 32457 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name in groups, |
| 32458 | 'power', src.getModifiedItemAttr('subsystemMMissileFittingReduction'), **kwargs) |
| 32459 | |
| 32460 | |
| 32461 | class Effect6908(BaseEffect): |
nothing calls this directly
no test coverage detected