(fit, container, context, projectionRange, **kwargs)
| 7345 | |
| 7346 | @staticmethod |
| 7347 | def handler(fit, container, context, projectionRange, **kwargs): |
| 7348 | level = container.level if 'skill' in context else 1 |
| 7349 | for i in range(5): |
| 7350 | attr = 'boosterEffectChance{0}'.format(i + 1) |
| 7351 | fit.boosters.filteredItemBoost(lambda booster: attr in booster.itemModifiedAttributes, |
| 7352 | attr, container.getModifiedItemAttr('boosterChanceBonus') * level, **kwargs) |
| 7353 | |
| 7354 | |
| 7355 | class Effect2602(BaseEffect): |
nothing calls this directly
no test coverage detected