mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
23 lines
565 B
Python
23 lines
565 B
Python
import enum
|
|
|
|
|
|
class BrawlhallaMetal(enum.Enum):
|
|
TIN = 0
|
|
BRONZE = 1
|
|
SILVER = 2
|
|
GOLD = 3
|
|
PLATINUM = 4
|
|
DIAMOND = 5
|
|
|
|
def __str__(self):
|
|
return self.name.capitalize()
|
|
|
|
def __repr__(self):
|
|
return f"{self.__class__.__qualname__}.{self.name}"
|
|
|
|
def __gt__(self, other):
|
|
if other is None:
|
|
return True
|
|
if not isinstance(other, self.__class__):
|
|
raise TypeError(f"Can't compare {self.__class__.__qualname__} with {other.__class__.__qualname__}")
|
|
return self.value > other.value
|