(fit, module, context, projectionRange, **kwargs)
| 23148 | |
| 23149 | @staticmethod |
| 23150 | def handler(fit, module, context, projectionRange, **kwargs): |
| 23151 | # Set flag which is used to determine if ship is cloaked or not |
| 23152 | # This is used to apply cloak-only bonuses, like Black Ops' speed bonus |
| 23153 | # Doesn't apply to covops cloaks |
| 23154 | fit.extraAttributes['cloaked'] = True |
| 23155 | # Apply speed penalty |
| 23156 | fit.ship.multiplyItemAttr('maxVelocity', module.getModifiedItemAttr('maxVelocityModifier'), **kwargs) |
| 23157 | |
| 23158 | |
| 23159 | class Effect5951(BaseEffect): |
nothing calls this directly
no test coverage detected