(fit, container, context, projectionRange, **kwargs)
| 5986 | |
| 5987 | @staticmethod |
| 5988 | def handler(fit, container, context, projectionRange, **kwargs): |
| 5989 | level = container.level if 'skill' in context else 1 |
| 5990 | penalties = False if 'implant' in context or 'booster' in context else True |
| 5991 | fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill('Drones'), |
| 5992 | 'maxVelocity', container.getModifiedItemAttr('droneMaxVelocityBonus') * level, |
| 5993 | stackingPenalties=penalties, **kwargs) |
| 5994 | |
| 5995 | |
| 5996 | class Effect2014(BaseEffect): |
nothing calls this directly
no test coverage detected