(fit, ship, context, projectionRange, **kwargs)
| 36604 | |
| 36605 | @staticmethod |
| 36606 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 36607 | fit.extraAttributes.boost( |
| 36608 | 'droneControlRange', ship.getModifiedItemAttr('shipBonusRole1'), **kwargs) |
| 36609 | for attr in ('shieldCapacity', 'armorHP', 'hp'): |
| 36610 | fit.drones.filteredItemBoost( |
| 36611 | lambda drone: drone.item.requiresSkill('Drones'), |
| 36612 | attr, ship.getModifiedItemAttr('shipBonusRole1'), **kwargs) |
| 36613 | |
| 36614 | |
| 36615 | class Effect8099(BaseEffect): |
nothing calls this directly
no test coverage detected