Files
COC_API/app/models/enums.py
2025-11-02 01:14:41 -05:00

23 lines
510 B
Python

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"