add groups.json and rooms.json

This commit is contained in:
Octopus Octopus 2024-03-20 20:40:06 -05:00
parent df7e90fcf4
commit 9e98f0bdb9
2 changed files with 64 additions and 0 deletions

24
json/groups.json Normal file
View File

@ -0,0 +1,24 @@
{
"groups": [
{
"name": "Lobby A",
"rooms": [0]
},
{
"name": "Lobby B",
"rooms": [1]
},
{
"name": "Lobby C",
"rooms": [2]
},
{
"name": "Lobby D",
"rooms": [3]
},
{
"name": "Lobby E",
"rooms": [4]
},
]
}

40
json/rooms.json Normal file
View File

@ -0,0 +1,40 @@
{
"rooms": [
{
"id": 0,
"name": "Lobby A",
"from": [5],
"to": [5,1]
},
{
"id": 1,
"name": "Lobby B",
"from": [0],
"to": [2,5]
},
{
"id": 2,
"name": "Lobby C",
"from": [1,3],
"to": [3,5]
},
{
"id": 3,
"name": "Lobby D",
"from": [3,4],
"to": [5]
},
{
"id": 4,
"name": "Lobby E",
"from": [4],
"to": [5]
},
{
"id": 5,
"name": "Castle Grounds",
"from": [0,1,2,3,4],
"to": [0]
}
]
}