(fit, ship, context, projectionRange, **kwargs)
| 41367 | |
| 41368 | @staticmethod |
| 41369 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 41370 | fit.drones.filteredItemBoost( |
| 41371 | lambda drone: ( |
| 41372 | drone.item.requiresSkill('Light Drone Operation') |
| 41373 | or drone.item.requiresSkill('Medium Drone Operation') |
| 41374 | or drone.item.requiresSkill('Heavy Drone Operation')), |
| 41375 | 'damageMultiplier', ship.getModifiedItemAttr('shipBonusGBC1'), |
| 41376 | skill='Gallente Battlecruiser', **kwargs) |
| 41377 | |
| 41378 | |
| 41379 | class Effect12250(BaseEffect): |
nothing calls this directly
no test coverage detected