Add Boss list for all games and more boss types
All checks were successful
CI / backend-lint (pull_request) Successful in 8s
CI / frontend-lint (pull_request) Successful in 30s

This commit is contained in:
2026-02-11 21:33:55 +01:00
parent e61fce5f72
commit f71db65642
54 changed files with 139369 additions and 4512 deletions

View File

@@ -1329,6 +1329,8 @@ export function RunEncounters() {
champion: 'Champion',
rival: 'Rival',
evil_team: 'Evil Team',
kahuna: 'Kahuna',
totem: 'Totem',
other: 'Boss',
}
const bossTypeColors: Record<string, string> = {
@@ -1337,6 +1339,8 @@ export function RunEncounters() {
champion: 'border-red-400 dark:border-red-600',
rival: 'border-blue-400 dark:border-blue-600',
evil_team: 'border-gray-500 dark:border-gray-400',
kahuna: 'border-orange-400 dark:border-orange-600',
totem: 'border-teal-400 dark:border-teal-600',
other: 'border-gray-400 dark:border-gray-500',
}