1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/royalpack/types/dotamedal.py

22 lines
386 B
Python
Raw Normal View History

2020-01-24 00:07:11 +00:00
import enum
class DotaMedal(enum.Enum):
HERALD = 1
GUARDIAN = 2
CRUSADER = 3
ARCHON = 4
LEGEND = 5
ANCIENT = 6
DIVINE = 7
IMMORTAL = 8
def __str__(self):
return self.name.capitalize()
def __repr__(self):
return f"{self.__class__.__qualname__}.{self.name}"
def __gt__(self, other):
return self.value > other.value