(ship)
| 161 | |
| 162 | |
| 163 | def _getArmorResists(ship): |
| 164 | em = 1 - ship.getModifiedItemAttr('armorEmDamageResonance') |
| 165 | therm = 1 - ship.getModifiedItemAttr('armorThermalDamageResonance') |
| 166 | kin = 1 - ship.getModifiedItemAttr('armorKineticDamageResonance') |
| 167 | explo = 1 - ship.getModifiedItemAttr('armorExplosiveDamageResonance') |
| 168 | return em, therm, kin, explo |
| 169 | |
| 170 | |
| 171 | def _getHullResists(ship): |
no test coverage detected