(fit, skill, context, projectionRange, **kwargs)
| 9930 | |
| 9931 | @staticmethod |
| 9932 | def handler(fit, skill, context, projectionRange, **kwargs): |
| 9933 | amount = -skill.getModifiedItemAttr('consumptionQuantityBonus') |
| 9934 | fit.modules.filteredItemIncrease(lambda mod: mod.item.requiresSkill(skill), |
| 9935 | 'consumptionQuantity', amount * skill.level, **kwargs) |
| 9936 | |
| 9937 | |
| 9938 | class Effect3267(BaseEffect): |
nothing calls this directly
no test coverage detected