mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
12 lines
244 B
Python
12 lines
244 B
Python
import enum
|
|
|
|
|
|
# TODO: Rename this. It will break the whole database.
|
|
class DndProficiencyType(enum.Enum):
|
|
NONE = 0
|
|
HALF_PROFICIENCY = 0.5
|
|
FULL_PROFICIENCY = 1
|
|
EXPERTISE = 2
|
|
|
|
def __str__(self):
|
|
return str(self.value)
|