(fit, skill, context, projectionRange, **kwargs)
| 37930 | |
| 37931 | @staticmethod |
| 37932 | def handler(fit, skill, context, projectionRange, **kwargs): |
| 37933 | amount = -skill.getModifiedItemAttr('consumptionQuantityBonus') |
| 37934 | fit.modules.filteredItemIncrease(lambda mod: mod.item.requiresSkill(skill), |
| 37935 | 'consumptionQuantity', amount * skill.level, **kwargs) |
| 37936 | |
| 37937 | |
| 37938 | class Effect8309(BaseEffect): |
nothing calls this directly
no test coverage detected