(ship)
| 153 | |
| 154 | |
| 155 | def _getShieldResists(ship): |
| 156 | em = 1 - ship.getModifiedItemAttr('shieldEmDamageResonance') |
| 157 | therm = 1 - ship.getModifiedItemAttr('shieldThermalDamageResonance') |
| 158 | kin = 1 - ship.getModifiedItemAttr('shieldKineticDamageResonance') |
| 159 | explo = 1 - ship.getModifiedItemAttr('shieldExplosiveDamageResonance') |
| 160 | return em, therm, kin, explo |
| 161 | |
| 162 | |
| 163 | def _getArmorResists(ship): |
no test coverage detected