initial index

This commit is contained in:
41666 2023-05-22 21:04:29 -04:00
parent 62cc828d6a
commit 88015a98cd
21 changed files with 343 additions and 56 deletions

59
app/utils/worlds.ts Normal file
View file

@ -0,0 +1,59 @@
export const worlds: Record<
string,
{ timeZone: string; locale: string; location: string; platform: string }
> = {
"1": {
timeZone: "America/Los_Angeles",
locale: "en-US",
location: "US-W",
platform: "PC",
},
"10": {
timeZone: "UTC",
locale: "en-GB",
location: "EU",
platform: "PC",
},
"13": {
timeZone: "UTC",
locale: "en-GB",
location: "EU",
platform: "PC",
},
"17": {
timeZone: "America/New_York",
locale: "en-US",
location: "US-E",
platform: "PC",
},
"19": {
timeZone: "America/New_York",
locale: "en-US",
location: "US-E",
platform: "PC",
},
"40": {
timeZone: "Asia/Tokyo",
locale: "en-GB",
location: "JP",
platform: "PC",
},
"1000": {
timeZone: "America/New_York",
locale: "en-US",
location: "US-E",
platform: "PS4",
},
"2000": {
timeZone: "UTC",
locale: "en-GB",
location: "EU",
platform: "PS4",
},
default: {
timeZone: "UTC",
locale: "en-US",
location: "???",
platform: "???",
},
};