-
Notifications
You must be signed in to change notification settings - Fork 0
/
adventure.toml
74 lines (57 loc) · 1.27 KB
/
adventure.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name = "Adventure"
introduction = "This is the introduction adventure for the Rust Adventure System, RAS."
[[rooms]]
number = 1
name = "Forest path"
description = "You are on a forest path. To the north is a small cottage. The path continues to the West and East."
[[rooms.paths]]
destination = 2
direction = "North"
[[rooms.paths]]
destination = 3
direction = "West"
[[rooms.paths]]
destination = 4
direction = "East"
[[rooms]]
number = 2
name = "Inside the Cottage"
description = "You are inside a small cottage. On the North wall is a picture."
[[rooms.paths]]
destination = 1
direction = "South"
[[rooms]]
number = 3
name = "Deep Forest Path"
description = "You are on a forest path in the deep woods."
[[rooms.paths]]
destination = 1
direction = "East"
[[rooms]]
number = 4
name = "Village Path"
description = "You are on a small path to the west of a village."
[[rooms.paths]]
destination = 1
direction = "West"
[[items]]
name = "axe"
description = "A rusty axe."
location = 1
carried = false
[[items]]
name = "lamp"
description = "An old oil lamp"
location = 2
carried = false
[[items]]
name = "Letter"
description = "A small piece of paper with typewritten words on it."
location = 0
carried = true
[[verbs]]
word = "sing"
objects = 0
[[verbs]]
word = "smell"
objects = 1