(fit, container, context, projectionRange, **kwargs)
| 2447 | |
| 2448 | @staticmethod |
| 2449 | def handler(fit, container, context, projectionRange, **kwargs): |
| 2450 | for dmgType in ('em', 'kinetic', 'explosive', 'thermal'): |
| 2451 | fit.modules.filteredChargeMultiply(lambda mod: mod.charge.requiresSkill('Missile Launcher Operation') or |
| 2452 | mod.charge.requiresSkill('Defender Missiles'), |
| 2453 | '%sDamage' % dmgType, |
| 2454 | container.getModifiedItemAttr('missileDamageMultiplierBonus'), |
| 2455 | stackingPenalties=True, **kwargs) |
| 2456 | |
| 2457 | |
| 2458 | class Effect784(BaseEffect): |
nothing calls this directly
no test coverage detected