(fit, skill, context, projectionRange, **kwargs)
| 9249 | |
| 9250 | @staticmethod |
| 9251 | def handler(fit, skill, context, projectionRange, **kwargs): |
| 9252 | amount = -skill.getModifiedItemAttr('consumptionQuantityBonus') |
| 9253 | fit.modules.filteredItemIncrease(lambda mod: mod.item.requiresSkill(skill), |
| 9254 | 'consumptionQuantity', amount * skill.level, **kwargs) |
| 9255 | |
| 9256 | |
| 9257 | class Effect2979(BaseEffect): |
nothing calls this directly
no test coverage detected