(fit, src, context, projectionRange, **kwargs)
| 17901 | |
| 17902 | @staticmethod |
| 17903 | def handler(fit, src, context, projectionRange, **kwargs): |
| 17904 | lvl = src.level |
| 17905 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Armor Resistance Shift Hardener', 'capacitorNeed', |
| 17906 | src.getModifiedItemAttr('capNeedBonus') * lvl, **kwargs) |
| 17907 | fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill('Resistance Phasing'), 'capacitorNeed', |
| 17908 | src.getModifiedItemAttr('capNeedBonus') * lvl, **kwargs) |
| 17909 | |
| 17910 | |
| 17911 | class Effect5165(BaseEffect): |
nothing calls this directly
no test coverage detected