init commit
This commit is contained in:
22
app/models/enums.py
Normal file
22
app/models/enums.py
Normal file
@@ -0,0 +1,22 @@
|
||||
from enum import Enum
|
||||
|
||||
class HeroClass(str, Enum):
|
||||
GUARDIAN = "guardian"
|
||||
BLOODBORN = "bloodborn"
|
||||
RANGER = "ranger"
|
||||
ASSASSIN = "assassin"
|
||||
ARCANIST = "arcanist"
|
||||
HEXIST = "hexist"
|
||||
CLERIC = "cleric"
|
||||
WARLOCK = "warlock"
|
||||
|
||||
class Races(str, Enum):
|
||||
"""Representing various species."""
|
||||
Draconian = "draconian"
|
||||
Dwarf = "dwarves"
|
||||
Elf = "elves"
|
||||
Beastfolk = "beastfolk"
|
||||
Terran = "terran"
|
||||
Vorgath = "vorgath"
|
||||
Avaline = "avaline"
|
||||
Hellion = "hellions"
|
||||
Reference in New Issue
Block a user