Initial Commit

This commit is contained in:
June
2026-03-24 22:00:03 -07:00
parent bf9620bbb6
commit 5533b95cff
73 changed files with 1647 additions and 293 deletions

12
Data/cameras.json Normal file
View File

@@ -0,0 +1,12 @@
{
"HANGAR": 1,
"KITCHEN": 2,
"REC_ROOM": 3,
"RESTROOM": 4,
"SUPPLY_ROOM": 5,
"MAINTENANCE_ROOM": 6,
"STORAGE_A": 7,
"STORAGE_B": 8,
"EAST_HALLWAY": 9,
"WEST_HALLWAY": 10
}

58
Data/locations.json Normal file
View File

@@ -0,0 +1,58 @@
{
"0": {
"name": "office",
"connections": [2]
},
"1": {
"name": "hangar",
"connections": [3, 4, 2, 5, 7]
},
"2": {
"name": "hangar_rear",
"connections": [1, 11, 12]
},
"3": {
"name": "kitchen",
"connections": [1, 4]
},
"4": {
"name": "rec_room",
"connections": [1, 3, 5]
},
"5": {
"name": "restroom",
"connections": [1, 4]
},
"6": {
"name": "supply_room",
"connections": [11, 7]
},
"7": {
"name": "maintenance_room",
"connections": [1, 6, 10]
},
"8": {
"name": "storage_a",
"connections": [11]
},
"9": {
"name": "storage_b",
"connections": [10]
},
"10": {
"name": "power_room",
"connections": [7, 12, 9]
},
"11": {
"name": "east_hallway",
"connections": [2, 6, 8]
},
"12": {
"name": "west_hallway",
"connections": [2, 10]
},
"99": {
"name": "hidden",
"connections": []
}
}