mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-09-22 04:50:46 +02:00
40 lines
No EOL
1.7 KiB
Python
40 lines
No EOL
1.7 KiB
Python
from __future__ import annotations
|
|
|
|
# Standard library imports
|
|
import os
|
|
from sys import exit
|
|
from typing import Dict, List, Optional, Final, Tuple, Pattern, Union, Callable
|
|
|
|
# Third-party imports
|
|
|
|
COLORS = ['colorless', 'white', 'blue', 'black', 'red', 'green',
|
|
'azorius', 'orzhov', 'selesnya', 'boros', 'dimir',
|
|
'simic', 'izzet', 'golgari', 'rakdos', 'gruul',
|
|
'bant', 'esper', 'grixis', 'jund', 'naya',
|
|
'abzan', 'jeskai', 'mardu', 'sultai', 'temur',
|
|
'dune', 'glint', 'ink', 'witch', 'yore', 'wubrg',
|
|
'commander']
|
|
|
|
COLOR_ABRV: List[str] = ['Colorless', 'W', 'U', 'B', 'G', 'R',
|
|
'U, W', 'B, W', 'G, W', 'R, W', 'B, U',
|
|
'G, U', 'R, U', 'B, G', 'B, R', 'G, R',
|
|
'G, U, W', 'B, U, W', 'B, R, U', 'B, G, R', 'G, R, W',
|
|
'B, G, W', 'R, U, W', 'B, R, W', 'B, G, U', 'G, R, U',
|
|
'B, G, R, W', 'B, G, R, U', 'G, R, U, W', 'B, G, U, W',
|
|
'B, R, U, W', 'B, G, R, U, W']
|
|
|
|
MAIN_MENU_ITEMS: List[str] = ['Build A Deck', 'Setup CSV Files', 'Tag CSV Files', 'Quit']
|
|
|
|
SETUP_MENU_ITEMS: List[str] = ['Initial Setup', 'Regenerate CSV', 'Main Menu']
|
|
|
|
CSV_DIRECTORY: str = 'csv_files'
|
|
|
|
# Configuration for handling null/NA values in DataFrame columns
|
|
FILL_NA_COLUMNS: Dict[str, Optional[str]] = {
|
|
'colorIdentity': 'Colorless', # Default color identity for cards without one
|
|
'faceName': None # Use card's name column value when face name is not available
|
|
}
|
|
|
|
MULTIPLE_COPY_CARDS = ['Dragon\'s Approach', 'Hare Apparent', 'Nazgûl', 'Persistent Petitioners',
|
|
'Rat Colony', 'Relentless Rats', 'Seven Dwarves', 'Shadowborn Apostle',
|
|
'Slime Against Humanity', 'Templar Knight'] |