-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.json
37 lines (37 loc) · 925 Bytes
/
game.json
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
31
32
33
34
35
36
37
{
"title": "A Simple Text Game",
"meta": {
"author": "Dylan Bulmer",
"tagline": "",
"welcome": ""
},
"rooms": [{
"location": "the forest",
"context": [
"You have been travelling, lost inside this forest for 48 hours now.",
"Hungry... and thirsty... You need a place to rest."
],
"help": "Look around.",
"exits": [{
"direction": "north",
"index": 1,
"context": "A figure in the distance looks like a house."
}],
"collectables": [{
"name": "stick",
"type": "weapon"
}],
"enemies": []
},{
"location": "a log cabin",
"context": "You have approached a log cabin. Who's is it?",
"help": "Look around.",
"exits": [{
"direction": "south",
"index": 0,
"context": "The forest is back there."
}],
"collectables": [],
"enemies": []
}]
}