(fit, src, context, projectionRange, **kwargs)
| 33652 | |
| 33653 | @staticmethod |
| 33654 | def handler(fit, src, context, projectionRange, **kwargs): |
| 33655 | for layer, attrPrefix in (('shield', 'shield'), ('armor', 'armor'), ('hull', '')): |
| 33656 | for damageType in ('Kinetic', 'Thermal', 'Explosive', 'Em'): |
| 33657 | booster = '%s%sDamageResonance' % (layer, damageType) |
| 33658 | |
| 33659 | src.forceItemAttr(booster, src.getModifiedItemAttr('resistanceMultiplier'), **kwargs) |
| 33660 | |
| 33661 | |
| 33662 | class Effect7013(BaseEffect): |
nothing calls this directly
no test coverage detected