(fit, ship, context, projectionRange, **kwargs)
| 37947 | |
| 37948 | @staticmethod |
| 37949 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 37950 | for layer in ('shieldCapacity', 'armorHP', 'hp'): |
| 37951 | fit.drones.filteredItemBoost( |
| 37952 | lambda drone: drone.item.requiresSkill('Drones'), layer, |
| 37953 | ship.getModifiedItemAttr('capitalIndustrialShipBonusDroneHitPoints'), |
| 37954 | skill='Capital Industrial Ships', **kwargs) |
| 37955 | |
| 37956 | |
| 37957 | class Effect8311(BaseEffect): |
nothing calls this directly
no test coverage detected