(fit, ship, context, projectionRange, **kwargs)
| 38357 | |
| 38358 | @staticmethod |
| 38359 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 38360 | fit.drones.filteredItemBoost( |
| 38361 | lambda drone: drone.item.requiresSkill('Drones'), 'speedFactor', |
| 38362 | ship.getModifiedItemAttr('shipBonusGBC3'), skill='Gallente Battlecruiser', **kwargs) |
| 38363 | for attr in ('shieldCapacity', 'armorHP', 'hp'): |
| 38364 | fit.drones.filteredItemBoost( |
| 38365 | lambda drone: drone.item.requiresSkill('Propulsion Jamming'), attr, |
| 38366 | ship.getModifiedItemAttr('shipBonusGBC3'), skill='Gallente Battlecruiser', **kwargs) |
| 38367 | |
| 38368 | |
| 38369 | class Effect11061(BaseEffect): |
nothing calls this directly
no test coverage detected