(fit, ship, context, projectionRange, **kwargs)
| 37609 | |
| 37610 | @staticmethod |
| 37611 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 37612 | damageTypes = ('Em', 'Explosive', 'Kinetic', 'Thermal') |
| 37613 | for damageType in damageTypes: |
| 37614 | fit.ship.boostItemAttr( |
| 37615 | 'shield{}DamageResonance'.format(damageType), |
| 37616 | ship.getModifiedItemAttr('exhumersBonusShieldResistance'), |
| 37617 | skill='Exhumers', **kwargs) |
| 37618 | |
| 37619 | |
| 37620 | class Effect8261(BaseEffect): |
nothing calls this directly
no test coverage detected