(fit, src, context, projectionRange, **kwargs)
| 26479 | |
| 26480 | @staticmethod |
| 26481 | def handler(fit, src, context, projectionRange, **kwargs): |
| 26482 | groups = ('Structure Anti-Capital Missile', 'Structure Anti-Subcapital Missile', 'Guided Bomb') |
| 26483 | for damageType in ('em', 'thermal', 'explosive', 'kinetic'): |
| 26484 | fit.modules.filteredChargeBoost(lambda mod: mod.charge.group.name in groups, |
| 26485 | '%sDamage' % damageType, src.getModifiedItemAttr('damageMultiplierBonus'), |
| 26486 | skill='Structure Missile Systems', **kwargs) |
| 26487 | |
| 26488 | |
| 26489 | class Effect6400(BaseEffect): |
nothing calls this directly
no test coverage detected