(self)
| 284 | |
| 285 | @property |
| 286 | def hp(self): |
| 287 | hp = {} |
| 288 | for (type, attr) in (('shield', 'shieldCapacity'), ('armor', 'armorHP'), ('hull', 'hp')): |
| 289 | hp[type] = self.getModifiedItemAttr(attr) |
| 290 | |
| 291 | return hp |
| 292 | |
| 293 | @property |
| 294 | def ehp(self): |
nothing calls this directly
no test coverage detected