(self)
| 1556 | |
| 1557 | @property |
| 1558 | def hp(self): |
| 1559 | hp = {} |
| 1560 | for (type, attr) in (('shield', 'shieldCapacity'), ('armor', 'armorHP'), ('hull', 'hp')): |
| 1561 | hp[type] = self.ship.getModifiedItemAttr(attr) |
| 1562 | |
| 1563 | return hp |
| 1564 | |
| 1565 | @property |
| 1566 | def ehp(self): |
nothing calls this directly
no test coverage detected