1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-17 10:53:57 +00:00
royalnet/rpgpack/utils/factioncolors.py

14 lines
241 B
Python

from typing import *
import enum
class FactionColor(enum.Enum):
RED = "🔴"
ORANGE = "🟠"
YELLOW = "🟡"
GREEN = "🟢"
BLUE = "🔵"
PURPLE = "🟣"
BLACK = "⚫️"
WHITE = "⚪️"
BROWN = "🟤"