fix: align scouting rarity symbols with system colors

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Cal Corum 2026-03-06 13:03:15 -06:00 committed by cal
parent 637d264181
commit c4cfe83e55

View File

@ -23,12 +23,12 @@ SCOUT_WINDOW_SECONDS = 1800 # 30 minutes
# Rarity value → display symbol # Rarity value → display symbol
RARITY_SYMBOLS = { RARITY_SYMBOLS = {
8: "\U0001f7e1", # HoF — yellow 8: "\U0001f7e3", # HoF — purple (#751cea)
5: "\U0001f7e3", # MVP — purple 5: "\U0001f535", # MVP — cyan/blue (#56f1fa)
3: "\U0001f535", # All-Star — blue 3: "\U0001f7e1", # All-Star — gold (#FFD700)
2: "\U0001f7e2", # Starter — green 2: "\u26aa", # Starter — silver (#C0C0C0)
1: "\u26aa", # Reserve — white 1: "\U0001f7e4", # Reserve — bronze (#CD7F32)
0: "\u26ab", # Replacement — black 0: "\u26ab", # Replacement — dark gray (#454545)
} }