(fit, skill, context, projectionRange, **kwargs)
| 5099 | |
| 5100 | @staticmethod |
| 5101 | def handler(fit, skill, context, projectionRange, **kwargs): |
| 5102 | amount = -skill.getModifiedItemAttr('consumptionQuantityBonus') |
| 5103 | fit.modules.filteredItemIncrease(lambda mod: mod.item.requiresSkill(skill), |
| 5104 | 'consumptionQuantity', amount * skill.level, **kwargs) |
| 5105 | |
| 5106 | |
| 5107 | class Effect1657(BaseEffect): |
nothing calls this directly
no test coverage detected