(fit, src, context, projectionRange, **kwargs)
| 30157 | |
| 30158 | @staticmethod |
| 30159 | def handler(fit, src, context, projectionRange, **kwargs): |
| 30160 | lvl = src.level if 'skill' in context else 1 |
| 30161 | fit.drones.filteredItemBoost(lambda mod: mod.item.requiresSkill('Drones'), 'maxVelocity', |
| 30162 | src.getModifiedItemAttr('maxVelocityBonus') * lvl, **kwargs) |
| 30163 | fit.fighters.filteredItemBoost(lambda mod: mod.item.requiresSkill('Fighters'), 'maxVelocity', |
| 30164 | src.getModifiedItemAttr('maxVelocityBonus') * lvl, **kwargs) |
| 30165 | |
| 30166 | |
| 30167 | class Effect6669(BaseEffect): |
nothing calls this directly
no test coverage detected