(fit, ship, context, projectionRange, **kwargs)
| 41429 | |
| 41430 | @staticmethod |
| 41431 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 41432 | fit.drones.filteredItemBoost( |
| 41433 | lambda drone: ( |
| 41434 | drone.item.requiresSkill('Light Drone Operation') |
| 41435 | or drone.item.requiresSkill('Medium Drone Operation') |
| 41436 | or drone.item.requiresSkill('Heavy Drone Operation')), |
| 41437 | 'trackingSpeed', ship.getModifiedItemAttr('eliteBonusCommandShips2'), |
| 41438 | skill='Command Ships', **kwargs) |
| 41439 | |
| 41440 | |
| 41441 | class Effect12253(BaseEffect): |
nothing calls this directly
no test coverage detected