(fit, skill, context, projectionRange, **kwargs)
| 7032 | |
| 7033 | @staticmethod |
| 7034 | def handler(fit, skill, context, projectionRange, **kwargs): |
| 7035 | damageTypes = ('em', 'explosive', 'kinetic', 'thermal') |
| 7036 | for dmgType in damageTypes: |
| 7037 | fit.modules.filteredItemBoost( |
| 7038 | lambda mod: mod.item.requiresSkill('Doomsday Operation'), f'{dmgType}Damage', |
| 7039 | skill.getModifiedItemAttr('damageMultiplierBonus') * skill.level, **kwargs) |
| 7040 | |
| 7041 | |
| 7042 | class Effect2422(BaseEffect): |
nothing calls this directly
no test coverage detected