Add enum for colors

This commit is contained in:
The Magician 2024-03-25 18:19:40 +00:00
parent 021c98a71c
commit f813e9f136
1 changed files with 7 additions and 0 deletions

7
pauper_metagame_analysis/mtggoldfish.py Normal file → Executable file
View File

@ -16,3 +16,10 @@ class Format(Enum):
PENNY_DREADFUL = "penny_dreadful"
COMMANDER_1V1 = "commander_1v1"
COMMANDER = "commander"
class Color(Enum):
WHITE = 0
BLUE = 1
BLACK = 2
RED = 3
GREEN = 4