[+] Submit matching settings

This commit is contained in:
Azalea
2025-01-03 16:51:03 -05:00
parent 9489151bc1
commit 0bda8406c3
3 changed files with 103 additions and 44 deletions

View File

@@ -1,3 +1,4 @@
import type { ChusanMatchingOption } from "./generalTypes"
export const AQUA_HOST = 'https://aquadx.net/aqua'
export const DATA_HOST = 'https://aquadx.net'
@@ -21,7 +22,7 @@ export const HAS_USERBOX_ASSETS = true
// Meow meow meow
// Matching servers
export const CHU3_MATCHINGS = [
export const CHU3_MATCHINGS: ChusanMatchingOption[] = [
{
name: "林国对战",
ui: "https://chu3-match.sega.ink/rooms",

View File

@@ -153,3 +153,12 @@ export interface UserBox {
level: number
playerRating: number
}
export interface ChusanMatchingOption {
name: string
ui: string
guide: string
matching: string
reflector: string
coop: string[]
}