Remove unused fighting game options from the ScoreboardPanel and update character names in the fighting-characters module

This commit is contained in:
Pandipipas
2026-02-14 00:25:30 +01:00
parent a8a3b96c28
commit 074406fd19
2 changed files with 0 additions and 12 deletions
@@ -31,10 +31,6 @@ const gameInput = ref('');
const allFightingGameOptions = [ const allFightingGameOptions = [
'Street Fighter 6', 'Street Fighter 6',
'TEKKEN 8', 'TEKKEN 8',
'Guilty Gear -Strive-',
'Mortal Kombat 1',
'The King of Fighters XV',
'Granblue Fantasy Versus: Rising',
'2XKO', '2XKO',
].map((game) => ({ ].map((game) => ({
label: game, label: game,
-8
View File
@@ -7,20 +7,12 @@ export interface FightingCharacterOption {
const characterNamesByGame: Record<string, string[]> = { const characterNamesByGame: Record<string, string[]> = {
'Street Fighter 6': ['Ryu', 'Ken', 'Chun-Li', 'Luke', 'Juri', 'Cammy'], 'Street Fighter 6': ['Ryu', 'Ken', 'Chun-Li', 'Luke', 'Juri', 'Cammy'],
'TEKKEN 8': ['Alisa', 'Anna', 'Armor King', 'Asuka', 'Azucena', 'Bob', 'Bryan', 'Claudio', 'Clive', 'Devil Jin', 'Dragunov', 'Eddy', 'Fahkumram', 'Feng', 'Heihachi', 'Hwoarang', 'Jack-8', 'Jin', 'Jun', 'Kazuya', 'King', 'Kuma', 'Kunimitsu', 'Lars', 'Law', 'Lee', 'Leo', 'Leroy', 'Lidia', 'Lili', 'Miary Zo', 'Nina', 'Panda', 'Paul', 'Raven', 'Reina', 'Roger Jr', 'Shaheen', 'Steve', 'Victor', 'Xiaoyu', 'Yoshimitsu', 'Zafina'], 'TEKKEN 8': ['Alisa', 'Anna', 'Armor King', 'Asuka', 'Azucena', 'Bob', 'Bryan', 'Claudio', 'Clive', 'Devil Jin', 'Dragunov', 'Eddy', 'Fahkumram', 'Feng', 'Heihachi', 'Hwoarang', 'Jack-8', 'Jin', 'Jun', 'Kazuya', 'King', 'Kuma', 'Kunimitsu', 'Lars', 'Law', 'Lee', 'Leo', 'Leroy', 'Lidia', 'Lili', 'Miary Zo', 'Nina', 'Panda', 'Paul', 'Raven', 'Reina', 'Roger Jr', 'Shaheen', 'Steve', 'Victor', 'Xiaoyu', 'Yoshimitsu', 'Zafina'],
'Guilty Gear -Strive-': ['Sol Badguy', 'Ky Kiske', 'May', 'Zato-1', 'I-No', 'Baiken'],
'Mortal Kombat 1': ['Scorpion', 'Sub-Zero', 'Raiden', 'Liu Kang', 'Kitana', 'Mileena'],
'The King of Fighters XV': ['Kyo Kusanagi', 'Iori Yagami', 'Terry Bogard', 'Mai Shiranui', 'Leona', 'Athena'],
'Granblue Fantasy Versus: Rising': ['Gran', 'Djeeta', 'Lancelot', 'Narmaya', 'Vira', 'Belial'],
'2XKO': ['Ahri', 'Darius', 'Ekko', 'Yasuo', 'Illaoi', 'Jinx'], '2XKO': ['Ahri', 'Darius', 'Ekko', 'Yasuo', 'Illaoi', 'Jinx'],
}; };
const paletteByGame: Record<string, [string, string]> = { const paletteByGame: Record<string, [string, string]> = {
'Street Fighter 6': ['#f97316', '#b91c1c'], 'Street Fighter 6': ['#f97316', '#b91c1c'],
'TEKKEN 8': ['#2563eb', '#111827'], 'TEKKEN 8': ['#2563eb', '#111827'],
'Guilty Gear -Strive-': ['#facc15', '#9333ea'],
'Mortal Kombat 1': ['#84cc16', '#1f2937'],
'The King of Fighters XV': ['#38bdf8', '#1d4ed8'],
'Granblue Fantasy Versus: Rising': ['#60a5fa', '#7c3aed'],
'2XKO': ['#22d3ee', '#0f766e'], '2XKO': ['#22d3ee', '#0f766e'],
}; };