(fit, container, context, projectionRange, **kwargs)
| 6076 | |
| 6077 | @staticmethod |
| 6078 | def handler(fit, container, context, projectionRange, **kwargs): |
| 6079 | level = container.level if 'skill' in context else 1 |
| 6080 | penalized = False if 'skill' in context or 'implant' in context else True |
| 6081 | fit.drones.filteredItemBoost(lambda drone: drone.item.group.name == 'Logistic Drone', |
| 6082 | 'shieldBonus', container.getModifiedItemAttr('damageHP') * level, |
| 6083 | stackingPenalties=penalized, **kwargs) |
| 6084 | |
| 6085 | |
| 6086 | class Effect2020(BaseEffect): |
nothing calls this directly
no test coverage detected