(self)
| 467 | |
| 468 | @property |
| 469 | def isAbyssal(self): |
| 470 | if Item.ABYSSAL_TYPES is None: |
| 471 | Item.getAbyssalTypes() |
| 472 | |
| 473 | return self.ID in Item.ABYSSAL_TYPES |
| 474 | |
| 475 | @classmethod |
| 476 | def getAbyssalTypes(cls): |
nothing calls this directly
no test coverage detected