-
Notifications
You must be signed in to change notification settings - Fork 22
/
sidebar.js
242 lines (240 loc) · 6.88 KB
/
sidebar.js
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
// @ts-check
// See: https://docusaurus.io/docs/sidebar
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
lockSidebar: [
{
type: "category",
label: "Locks",
collapsible: false,
link: {
type: "generated-index",
title: "Locks",
description: "This is an auto-generated list of all the locks.",
slug: "upgrades/locks",
},
items: [{ type: "autogenerated", dirName: "upgrades/locks" }],
},
],
upgradeArchitectSidebar: [
{
type: "category",
label: "Architect",
collapsible: false,
link: {
type: "generated-index",
title: "Architect Upgrades",
description:
"This is an auto-generated list of all the architect upgrades.",
slug: "upgrades/architect",
},
items: [{ type: "autogenerated", dirName: "upgrades/architect" }],
},
],
upgradeInfiltratorSidebar: [
{
type: "category",
label: "Infiltrator",
collapsible: false,
link: {
type: "generated-index",
title: "Infiltrator Upgrades",
description:
"This is an auto-generated list of all the infiltrator upgrades.",
slug: "upgrades/infiltrator",
},
items: [{ type: "autogenerated", dirName: "upgrades/infiltrator" }],
},
],
upgradeScavengerSidebar: [
{
type: "category",
label: "Scavenger",
collapsible: false,
link: {
type: "generated-index",
title: "Scavenger Upgrades",
description:
"This is an auto-generated list of all the scavenger upgrades.",
slug: "upgrades/scavenger",
},
items: [{ type: "autogenerated", dirName: "upgrades/scavenger" }],
},
],
upgradeExecutiveSidebar: [
{
type: "category",
label: "Executive",
collapsible: false,
link: {
type: "generated-index",
title: "Executive Upgrades",
description:
"This is an auto-generated list of all the executive upgrades.",
slug: "upgrades/executive",
},
items: [{ type: "autogenerated", dirName: "upgrades/executive" }],
},
],
upgradeOtherSidebar: [
{
type: "category",
label: "Other",
collapsible: false,
link: {
type: "generated-index",
title: "Other Upgrades",
description:
"This is an auto-generated list of all the upgrades which do not fit elsewhere.",
slug: "upgrades/other",
},
items: [{ type: "autogenerated", dirName: "upgrades/other" }],
},
],
characterSidebar: [
{
type: "category",
label: "Characters",
collapsible: false,
link: {
type: "generated-index",
title: "Characters",
description:
"This is an auto-generated list of characters in hackmud's storyline.",
slug: "lore/characters",
},
items: [{ type: "autogenerated", dirName: "lore/characters" }],
},
],
eventSidebar: [
{
type: "category",
label: "Events",
collapsible: false,
link: {
type: "generated-index",
title: "Events",
description: "This is an auto-generated list of all events.",
slug: "lore/events",
},
items: [{ type: "autogenerated", dirName: "lore/events" }],
},
],
scriptsLibSidebar: [
{
type: "category",
label: "scripts.lib",
collapsible: false,
link: {
type: "generated-index",
title: "scripts.lib",
description: "This is an auto-generated list of scripts.lib functions.",
slug: "scripting/scripts_lib",
},
items: [{ type: "autogenerated", dirName: "scripting/scripts.lib" }],
},
],
trustScriptsSidebar: [
{
type: "category",
label: "Trust Scripts",
collapsible: false,
link: {
type: "generated-index",
title: "Trust Scripts",
description: "This is an auto-generated list of all trust scripts.",
slug: "scripting/trust_scripts",
},
items: [{ type: "autogenerated", dirName: "scripting/trust_scripts" }],
},
],
databaseSidebar: [
{
type: "category",
label: "Database",
collapsible: false,
link: {
type: "generated-index",
title: "Database Functions",
description:
"Users in hackmud are given a MongoDB collection which can be manipulated via in-game scripting. This is an auto-generated list of database functions, accessible via the #db preprocessor directive.",
slug: "scripting/db",
},
items: [{ type: "autogenerated", dirName: "scripting/db" }],
},
],
directivesSidebar: [
{
type: "category",
label: "JavaScript Extensions",
collapsible: false,
link: {
type: "generated-index",
title: "JavaScript Extensions",
description:
"hackmud scripts have access to a variety of hackmud-specific features that are not present in other JavaScript environments. This is an auto-generated list of these features, such as preprocessor directives and special global variables.",
slug: "scripting/extensions",
},
items: [{ type: "autogenerated", dirName: "scripting/extensions" }],
},
],
syntaxSidebar: [
{
type: "category",
label: "Miscellaneous Syntax",
collapsible: false,
link: {
type: "generated-index",
title: "Miscellaneous Syntax",
description:
"This is an autogenerated list of miscellaneous hackmud syntactical features. Color codes, macro commands, and chat-window commands all welcome here.",
slug: "scripting/syntax",
},
items: [{ type: "autogenerated", dirName: "scripting/syntax" }],
},
],
newPlayersSidebar: [
{
type: "category",
label: "New Players",
collapsible: false,
link: {
type: "generated-index",
title: "New Players",
description:
"This is an auto-generated list of guides for new players.",
slug: "guides/new_players",
},
items: [{ type: "autogenerated", dirName: "guides/new_players" }],
},
],
advancedSidebar: [
{
type: "category",
label: "Advanced Guides",
collapsible: false,
link: {
type: "generated-index",
title: "Advanced Guides",
description: "This is an auto-generated list of advanced guides.",
slug: "guides/advanced",
},
items: [{ type: "autogenerated", dirName: "guides/advanced" }],
},
],
miscGuidesSidebar: [
{
type: "category",
label: "Misc",
collapsible: false,
link: {
type: "generated-index",
title: "Misc Guides",
description: "This is an auto-generated list of miscellaneous guides.",
slug: "guides/misc",
},
items: [{ type: "autogenerated", dirName: "guides/misc" }],
},
],
};
module.exports = sidebars;