(fit, ship, context, projectionRange, **kwargs)
| 6893 | |
| 6894 | @staticmethod |
| 6895 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 6896 | for srcResType, tgtResType in ( |
| 6897 | ('Em', 'Em'), |
| 6898 | ('Explosive', 'Explosive'), |
| 6899 | ('Kinetic', 'Kinetic'), |
| 6900 | ('Thermic', 'Thermal') |
| 6901 | ): |
| 6902 | fit.ship.boostItemAttr(f'shield{tgtResType}DamageResonance', |
| 6903 | ship.getModifiedItemAttr(f'passive{srcResType}DamageResistanceBonus'), **kwargs) |
| 6904 | |
| 6905 | |
| 6906 | class Effect2298(BaseEffect): |
nothing calls this directly
no test coverage detected