-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
283 lines (283 loc) · 10.2 KB
/
manifest.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
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
{
"info": {
"name": "debugtools",
"display_name": "Stonehearth Debug Tools",
"version": 3,
"default_enabled": false
},
"server_init_script": "file(debugtools_server)",
"mixintos": {
"stonehearth:mixins:base_human": "file(mixintos/base_human/base_human.json)"
},
"components": {
"animation_debug_text": "file(components/animation_debug_text/animation_debug_text_component.lua)"
},
"component_renderers": {
"animation_debug_text": "file(renderers/animation_debug_text/animation_debug_text_renderer.lua)"
},
"ui": {
"html": [
"file(/ui/campaign_browser/campaign_browser.html)",
"file(/ui/entity_inspector/entity_inspector.html)",
"file(/ui/object_browser/object_browser.html)",
"file(/ui/object_browser/entity_tracker_inspector.html)",
"file(/ui/perfmon/perfmon.html)",
"file(/ui/entity_editor/entity_editor.html)",
"file(/ui/job_monitor/job_monitor.html)",
"file(/ui/trace_monitor/trace_monitor.html)",
"file(/ui/item_dropper/item_dropper.html)",
"file(/ui/lua_console/lua_console.html)"
],
"js": [
"file(ui/debug_dock/debug_dock.js)",
"file(/ui/console/debug_console_commands.js)",
"file(/ui/campaign_browser/campaign_browser.js)",
"file(/ui/entity_inspector/entity_inspector.js)",
"file(/ui/object_browser/object_browser.js)",
"file(/ui/object_browser/entity_tracker_inspector.js)",
"file(/ui/perfmon/perfmon.js)",
"file(/ui/entity_editor/entity_editor.js)",
"file(/ui/job_monitor/job_monitor.js)",
"file(/ui/trace_monitor/trace_monitor.js)",
"file(/ui/item_dropper/item_dropper.js)",
"file(/ui/lua_console/lua_console.js)"
],
"less": [
"file(/html/font-awesome-4.3.0/css/font-awesome.min.css)",
"file(/ui/debug_dock/debug_dock.less)",
"file(/ui/campaign_browser/campaign_browser.less)",
"file(/ui/entity_inspector/entity_inspector.less)",
"file(/ui/object_browser/object_browser.less)",
"file(/ui/object_browser/entity_tracker_inspector.less)",
"file(/ui/perfmon/perfmon.less)",
"file(/ui/entity_editor/entity_editor.less)",
"file(/ui/job_monitor/job_monitor.less)",
"file(/ui/trace_monitor/trace_monitor.less)",
"file(/ui/item_dropper/item_dropper.less)",
"file(/ui/lua_console/lua_console.less)"
]
},
"functions": {
"interrupt_ai": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"create_and_place_entity": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "client"
},
"destroy_npc_stockpiles": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"create_entity": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"add_exp_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"set_attr_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"set_attr_to_all_citizens_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"set_expendable_resource_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"set_expendable_resource_to_all_citizens_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"set_game_speed_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"spawn_encounter_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"get_current_interaction_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"reset_location_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"change_score_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"get_score_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"reset_scores_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"add_buff_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"remove_buff_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"add_thought_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"remove_thought_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"set_happiness_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"add_trait_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"remove_trait_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"promote_to_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"add_citizen_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"add_gold_console_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"dump_backpack_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"hot_reload_server": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"hot_reload_client": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "client"
},
"add_journal_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"pasture_reproduce_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"renew_resource_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"grow_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"get_all_item_uris_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"decay_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"start_game_master_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"update_entity_command": {
"controller": "file(call_handlers/entity_editor_commands.lua)",
"endpoint": "server"
},
"rotate_entity_command": {
"controller": "file(call_handlers/entity_editor_commands.lua)",
"endpoint": "server"
},
"get_mod_controller_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"get_all_data": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"call_component_function_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"ai_reconsider_entity_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"fill_storage_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"set_ai_log_override_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"get_gamestate_now_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"fixup_components_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"select_storage_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"toggle_profiler": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"print_ai_stack_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"add_conversation_subject_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"get_conversation_subject_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"get_conversation_actives_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"set_enable_animation_text_command": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"exec_script_server": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "server"
},
"exec_script_client": {
"controller": "file(call_handlers/debugtools_commands.lua)",
"endpoint": "client"
}
},
"default_locale": "en"
}