fix: align scouting rarity symbols with system colors
All checks were successful
Build Docker Image / build (push) Successful in 1m22s

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
parent ed00a97c0d
commit 77c3f3004c

View File

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