Files
Text-Adventure/Resources/Rooms.json
T
2026-08-07 13:10:07 -05:00

45 lines
836 B
JSON

{
"rooms": [
[
{
"id": 0,
"name": "Test Room 1",
"description": "A fascinating Room. There's ... nothing in it, neat.",
"exits": [
{
"exitID": 1,
"dir": "E",
"isLocked": false
},
{
"exitID": 2,
"dir": "S",
"isLocked": false
}
]
},
{
"id": 1,
"name": "Test Room 2",
"description": "Another test room. What a shocker",
"exits": [
{}
]
}
],
[
{
"id": 6,
"name": "Test Room 3",
"description": "Testing another column",
"exits": [
{
"exitID": 0,
"dir": "S",
"isLocked": false
}
]
}
]
]
}