(fit, ship, context, projectionRange, **kwargs)
| 42790 | |
| 42791 | @staticmethod |
| 42792 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 42793 | fit.drones.filteredItemBoost( |
| 42794 | lambda drone: drone.item.requiresSkill('Drones'), 'speedFactor', |
| 42795 | ship.getModifiedItemAttr('shipBonusGD1'), skill='Gallente Destroyer', **kwargs) |
| 42796 | for attr in ('shieldCapacity', 'armorHP', 'hp'): |
| 42797 | fit.drones.filteredItemBoost( |
| 42798 | lambda drone: drone.item.requiresSkill('Propulsion Jamming'), attr, |
| 42799 | ship.getModifiedItemAttr('shipBonusGD1'), skill='Gallente Destroyer', **kwargs) |
| 42800 | |
| 42801 | |
| 42802 | class Effect12811(BaseEffect): |
nothing calls this directly
no test coverage detected