(fit, src, context, projectionRange, **kwargs)
| 26436 | |
| 26437 | @staticmethod |
| 26438 | def handler(fit, src, context, projectionRange, **kwargs): |
| 26439 | level = src.level if 'skill' in context else 1 |
| 26440 | for attr in ( |
| 26441 | 'explosionDelayBonus', |
| 26442 | 'aoeVelocityBonus', |
| 26443 | 'aoeCloudSizeBonus', |
| 26444 | 'missileVelocityBonus' |
| 26445 | ): |
| 26446 | fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill('Weapon Disruption'), |
| 26447 | attr, src.getModifiedItemAttr('scanSkillEwStrengthBonus') * level, **kwargs) |
| 26448 | |
| 26449 | |
| 26450 | class Effect6395(BaseEffect): |
nothing calls this directly
no test coverage detected