(self)
| 335 | |
| 336 | @property |
| 337 | def hp(self): |
| 338 | hp = {} |
| 339 | for (type, attr) in (('shield', 'shieldCapacity'), ('armor', 'armorHP'), ('hull', 'hp')): |
| 340 | hp[type] = self.getModifiedItemAttr(attr) |
| 341 | |
| 342 | return hp |
| 343 | |
| 344 | @property |
| 345 | def ehp(self): |
nothing calls this directly
no test coverage detected