blob: 8c46c846c37ae1eeba05c704199e78e780845977 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
export const getGameTitle = (gameId: string) => {
if (!gameId) return null;
const lowerCaseGameId = gameId.toLowerCase();
if (lowerCaseGameId.startsWith("sdvx") || lowerCaseGameId.startsWith("sound_voltex")) return "SOUND VOLTEX";
if (lowerCaseGameId.startsWith("iidx")) return "beatmania IIDX";
if (lowerCaseGameId.startsWith("chunithm_jp")) return "CHUNITHM (JAPAN)";
if (lowerCaseGameId.startsWith("maimaidx_jp")) return "maimai DX (JAPAN)";
if (lowerCaseGameId.startsWith("maimaidx_intl")) return "maimai DX (INTERNATIONAL)";
if (lowerCaseGameId.startsWith("ongeki_jp")) return "O.N.G.E.K.I";
if (lowerCaseGameId.startsWith("idac")) return "INITIAL D THE ARCADE";
if (lowerCaseGameId.startsWith("chunithm_intl")) return "CHUNITHM (INTERNATIONAL)";
if (lowerCaseGameId.startsWith("ddr")) return "DanceDanceRevolution";
if (lowerCaseGameId.startsWith("jubeat")) return "jubeat";
if (lowerCaseGameId.startsWith("gitadora")) return "GITADORA";
if (lowerCaseGameId.startsWith("nostalgia")) return "NOSTALGIA";
if (lowerCaseGameId.startsWith("popn_music")) return "pop'n music";
if (lowerCaseGameId.startsWith("music_diver")) return "MUSIC DIVER";
if (lowerCaseGameId.startsWith("street_fighter")) return "STREET FIGHTER TYPE ARCADE";
if (lowerCaseGameId.startsWith("taiko")) return "Taiko no Tatsujin";
if (lowerCaseGameId.startsWith("wacca")) return "WACCA PLUS";
if (lowerCaseGameId.startsWith("museca")) return "MÚSECA PLUS";
if (lowerCaseGameId.startsWith("reflec_beat") || lowerCaseGameId.startsWith("rb_deluxe")) return "REFLEC BEAT DELUXE PLUS";
if (lowerCaseGameId.startsWith("dance_rush")) return "DANCERUSH";
if(lowerCaseGameId.startsWith("dance_around")) return "DANCE aROUND";
if(lowerCaseGameId.startsWith("polaris_chord")) return "POLARIS CHORD/ポラリスコード";
if(lowerCaseGameId.startsWith("wmmt")) return "WANGAN MIDNIGHT MAXIMUM TUNE";
if(lowerCaseGameId.startsWith("wangan_maxi_jp")) return "WANGAN MIDNIGHT MAXIMUM TUNE (JAPAN)";
if(lowerCaseGameId.startsWith("wangan_maxi_na")) return "WANGAN MIDNIGHT MAXIMUM TUNE (NORTH AMERICA)";
if(lowerCaseGameId.startsWith("wangan_maxi_asia_oce")) return "WANGAN MIDNIGHT MAXIMUM TUNE (ASIA/OCEANIA)";
return gameId.toUpperCase();
};
|