From 074406fd192c5f1b3007149a03216e0fc1d7f6e0 Mon Sep 17 00:00:00 2001 From: Pandipipas <62224708+Pandipipas@users.noreply.github.com> Date: Sat, 14 Feb 2026 00:25:30 +0100 Subject: [PATCH] Remove unused fighting game options from the ScoreboardPanel and update character names in the fighting-characters module --- src/dashboard/example/components/ScoreboardPanel.vue | 4 ---- src/shared/fighting-characters.ts | 8 -------- 2 files changed, 12 deletions(-) diff --git a/src/dashboard/example/components/ScoreboardPanel.vue b/src/dashboard/example/components/ScoreboardPanel.vue index 596ee88..091d78b 100644 --- a/src/dashboard/example/components/ScoreboardPanel.vue +++ b/src/dashboard/example/components/ScoreboardPanel.vue @@ -31,10 +31,6 @@ const gameInput = ref(''); const allFightingGameOptions = [ 'Street Fighter 6', 'TEKKEN 8', - 'Guilty Gear -Strive-', - 'Mortal Kombat 1', - 'The King of Fighters XV', - 'Granblue Fantasy Versus: Rising', '2XKO', ].map((game) => ({ label: game, diff --git a/src/shared/fighting-characters.ts b/src/shared/fighting-characters.ts index f69cf48..86cddc3 100644 --- a/src/shared/fighting-characters.ts +++ b/src/shared/fighting-characters.ts @@ -7,20 +7,12 @@ export interface FightingCharacterOption { const characterNamesByGame: Record = { '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'], - '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'], }; const paletteByGame: Record = { 'Street Fighter 6': ['#f97316', '#b91c1c'], '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'], };