-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgameModeDocumentation.txt
More file actions
30 lines (25 loc) · 1.02 KB
/
gameModeDocumentation.txt
File metadata and controls
30 lines (25 loc) · 1.02 KB
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
/*
gameMode Object Structure:
Common:
- mode: string ("singleplayer" | "multiplayer")
- legs: number (1-25)
- sets: number (1-25)
Singleplayer (mode: "singleplayer"):
- gameType: string ("X01")
- scoreToReachX01: string ("301" | "501" | "701" | "901")
- doubleRule: string ("No Double" | "Double Out" | "Double In" | "Double In & Out")
Multiplayer (mode: "multiplayer"):
For PvP:
- type: string ("pvp")
- players: string ("2players" | "3players" | "4players")
- gameType: string ("X01")
- scoreToReachX01: string ("301" | "501" | "701" | "901")
- doubleRule: string ("No Double" | "Double Out" | "Double In" | "Double In & Out")
- playerNames: array of strings (defaults: "Player 2", "Player 3", "Player 4" as needed)
For PvAI:
- type: string ("pvai")
- aiLevel: string ("Level 1: Zog" | "Level 2: Bleep" | "Level 3: Glork" | "Level 4: Vexar" | "Level 5: Xylox")
- gameType: string ("X01")
- scoreToReachX01: string ("301" | "501" | "701" | "901")
- doubleRule: string ("No Double" | "Double Out" | "Double In" | "Double In & Out")
*/