-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.pvm
132 lines (132 loc) · 4.91 KB
/
sample.pvm
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"areas": [
{
"entranceText": "You arrive in a cramped room full of weapon and armor racks.",
"features": [
{
"actions": [
{
"description": "Enter northern door",
"events": [
{
"text": "You traverse the passage.",
"type": "TextEvent"
},
{
"destination": "Courtyard 1",
"type": "PlayerMoveEvent"
}
]
}
],
"description": "A sturdy wooden door to the north",
"name": "northern door"
}
],
"name": "Armory",
"id": "Armory 1"
},
{
"entranceText": "You awake in a damp dark stone room.",
"features": [
{
"actions": [
{
"description": "Enter dark tunnel",
"events": [
{
"text": "You traverse the passage.",
"type": "TextEvent"
},
{
"destination": "Courtyard 1",
"type": "PlayerMoveEvent"
}
]
}
],
"description": "A long dark tunnel to the south with a light at the end",
"name": "dark tunnel"
}
],
"name": "Birth Springs",
"id": "Birth Springs 1"
},
{
"entranceText": "You arrive in a brightly lit dirt practice yard with several dummies set up.",
"features": [
{
"actions": [
{
"description": "Enter western stairway",
"events": [
{
"text": "You traverse the passage.",
"type": "TextEvent"
},
{
"destination": "Library 1",
"type": "PlayerMoveEvent"
}
]
}
],
"description": "A winding staircase to the west leading to a stone tower",
"name": "western stairway"
},
{
"actions": [
{
"description": "Enter southern door",
"events": [
{
"text": "You traverse the passage.",
"type": "TextEvent"
},
{
"destination": "Armory 1",
"type": "PlayerMoveEvent"
}
]
}
],
"description": "A sturdy-looking wooden door to the south",
"name": "southern door"
}
],
"name": "Courtyard",
"id": "Courtyard 1"
},
{
"entranceText": "You arrive in a quiet musty-smelling room with rows and rows of bookshelves.",
"features": [
{
"actions": [
{
"description": "Enter eastern door",
"events": [
{
"text": "You traverse the passage.",
"type": "TextEvent"
},
{
"destination": "Courtyard 1",
"type": "PlayerMoveEvent"
}
]
}
],
"description": "Wooden double-doors to the east",
"name": "eastern door"
}
],
"name": "Library",
"id": "Library 1"
}
],
"player": {
"currentArea": "Birth Springs 1",
"inventory": [],
"name": "Hero"
}
}