Search the name for an item from its ID. :param item_id: Item's ID to search for. :return: Item's name. :rtype: str
(cls, item_id)
| 280 | |
| 281 | @classmethod |
| 282 | def name_for(cls, item_id): |
| 283 | """ |
| 284 | Search the name for an item from its ID. |
| 285 | :param item_id: Item's ID to search for. |
| 286 | :return: Item's name. |
| 287 | :rtype: str |
| 288 | """ |
| 289 | return cls.STATIC_DATA[str(item_id)] |
| 290 | |
| 291 | @classmethod |
| 292 | def get_space_used(cls): |
no outgoing calls