From e82693ff01afb1e84a4baa83b0f4ef6d78979aab Mon Sep 17 00:00:00 2001 From: Pandipipas <62224708+Pandipipas@users.noreply.github.com> Date: Thu, 19 Feb 2026 23:57:18 +0100 Subject: [PATCH] Add and normalize Guilty Gear Strive character roster (#113) --- src/shared/fighting-characters.ts | 38 +++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/src/shared/fighting-characters.ts b/src/shared/fighting-characters.ts index e99b241..1271dd9 100644 --- a/src/shared/fighting-characters.ts +++ b/src/shared/fighting-characters.ts @@ -10,11 +10,49 @@ const DEFAULT_PLACEHOLDER_PALETTE: GamePalette = ['#334155', '#0f172a']; const MAX_INITIALS = 2; const characterNamesByGame: Record = { + 'Guilty Gear -Strive-': [ + 'A.B.A', + 'Anji Mito', + 'Asuka R. Kreutz', + 'Axl Low', + 'Baiken', + 'Bedman?', + 'Bridget', + 'Chipp Zanuff', + 'Dizzy', + 'Elphelt Valentine', + 'Faust', + 'Giovanna', + 'Goldlewis Dickinson', + 'Happy Chaos', + 'I-No', + 'Jack-O', + 'Johnny', + 'Ky Kiske', + 'Leo Whitefang', + 'Lucy', + 'May', + 'Millia Rage', + 'Nagoriyuki', + 'Potemkin', + 'Ramlethal Valentine', + 'Sin Kiske', + 'Slayer', + 'Sol Badguy', + 'Testament', + 'Unika', + 'Venom', + 'Zato-1', + ], 'Street Fighter 6': ['A.K.I.', 'Akuma', 'Alex', 'Bison', 'Blanka', 'Cammy', 'Chun-Li', 'Dee Jay', 'Dhalsim', 'E. Honda', 'Ed', 'Elena', 'Guile', 'Jamie', 'JP', 'Juri', 'Ken', 'Kimberly', 'Lily', 'Luke', 'Mai', 'Manon', 'Marisa', 'Rashid', 'Ryu', 'Sagat', 'Terry', 'Viper', 'Zangief'], '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'], }; const defaultCharacterPairByGame: Record = { + 'Guilty Gear -Strive-': { + leftCharacter: 'sol-badguy', + rightCharacter: 'ky-kiske', + }, 'Street Fighter 6': { leftCharacter: 'ryu', rightCharacter: 'chun-li',