(self)
| 1587 | |
| 1588 | @property |
| 1589 | def effectiveTank(self): |
| 1590 | if self.__effectiveTank is None: |
| 1591 | if self.damagePattern is None: |
| 1592 | ehps = self.tank |
| 1593 | else: |
| 1594 | ehps = self.damagePattern.calculateEffectiveTank(self, self.tank) |
| 1595 | |
| 1596 | self.__effectiveTank = ehps |
| 1597 | |
| 1598 | return self.__effectiveTank |
| 1599 | |
| 1600 | @property |
| 1601 | def sustainableTank(self): |
nothing calls this directly
no test coverage detected