(fit, ship, context, projectionRange, **kwargs)
| 41407 | |
| 41408 | @staticmethod |
| 41409 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 41410 | for attrName in ('shieldCapacity', 'armorHP', 'hp'): |
| 41411 | fit.drones.filteredItemBoost( |
| 41412 | lambda drone: ( |
| 41413 | drone.item.requiresSkill('Light Drone Operation') |
| 41414 | or drone.item.requiresSkill('Medium Drone Operation') |
| 41415 | or drone.item.requiresSkill('Heavy Drone Operation')), |
| 41416 | attrName, ship.getModifiedItemAttr('shipBonusGBC1'), |
| 41417 | skill='Gallente Battlecruiser', **kwargs) |
| 41418 | |
| 41419 | |
| 41420 | class Effect12252(BaseEffect): |
nothing calls this directly
no test coverage detected