@dava96/osrs-wiki-bucket-builder 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/definitions.d.ts +712 -0
- package/dist/generated/definitions.d.ts.map +1 -0
- package/dist/generated/definitions.js +238 -0
- package/dist/generated/definitions.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/query-builder.d.ts +165 -0
- package/dist/query-builder.d.ts.map +1 -0
- package/dist/query-builder.js +394 -0
- package/dist/query-builder.js.map +1 -0
- package/dist/types.d.ts +86 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +72 -0
- package/dist/types.js.map +1 -0
- package/package.json +58 -0
- package/readme.md +551 -0
|
@@ -0,0 +1,712 @@
|
|
|
1
|
+
/** definition for combat_achievement */
|
|
2
|
+
export interface CombatAchievement {
|
|
3
|
+
/** id */
|
|
4
|
+
id: number;
|
|
5
|
+
/** name */
|
|
6
|
+
name: string;
|
|
7
|
+
/** monster */
|
|
8
|
+
monster: string;
|
|
9
|
+
/** task */
|
|
10
|
+
task: string;
|
|
11
|
+
/** tier */
|
|
12
|
+
tier: string;
|
|
13
|
+
/** type */
|
|
14
|
+
type: string;
|
|
15
|
+
/** league_region */
|
|
16
|
+
league_region: string;
|
|
17
|
+
}
|
|
18
|
+
/** definition for dependency_list */
|
|
19
|
+
export interface DependencyList {
|
|
20
|
+
/** require */
|
|
21
|
+
require: string[];
|
|
22
|
+
/** load_data */
|
|
23
|
+
load_data: string[];
|
|
24
|
+
}
|
|
25
|
+
/** definition for drop_table_sources */
|
|
26
|
+
export interface DropTableSources {
|
|
27
|
+
/** table_name */
|
|
28
|
+
table_name: string;
|
|
29
|
+
/** quantity */
|
|
30
|
+
quantity: number;
|
|
31
|
+
/** rolls */
|
|
32
|
+
rolls: number;
|
|
33
|
+
/** rarity */
|
|
34
|
+
rarity: string;
|
|
35
|
+
/** approx */
|
|
36
|
+
approx: boolean;
|
|
37
|
+
/** drop_level */
|
|
38
|
+
drop_level: string;
|
|
39
|
+
/** drop_type */
|
|
40
|
+
drop_type: string;
|
|
41
|
+
}
|
|
42
|
+
/** definition for dropsline */
|
|
43
|
+
export interface Dropsline {
|
|
44
|
+
/** item_name */
|
|
45
|
+
item_name: string;
|
|
46
|
+
/** drop_json */
|
|
47
|
+
drop_json: string;
|
|
48
|
+
/** rare_drop_table */
|
|
49
|
+
rare_drop_table: boolean;
|
|
50
|
+
}
|
|
51
|
+
/** definition for exchange */
|
|
52
|
+
export interface Exchange {
|
|
53
|
+
/** id */
|
|
54
|
+
id: number;
|
|
55
|
+
/** name */
|
|
56
|
+
name: string;
|
|
57
|
+
/** value */
|
|
58
|
+
value: number;
|
|
59
|
+
/** is_alchable */
|
|
60
|
+
is_alchable: boolean;
|
|
61
|
+
/** high_alch */
|
|
62
|
+
high_alch: number;
|
|
63
|
+
/** low_alch */
|
|
64
|
+
low_alch: number;
|
|
65
|
+
/** limit */
|
|
66
|
+
limit: number;
|
|
67
|
+
/** module */
|
|
68
|
+
module: string;
|
|
69
|
+
/** is_historical */
|
|
70
|
+
is_historical: boolean;
|
|
71
|
+
/** json */
|
|
72
|
+
json: string;
|
|
73
|
+
}
|
|
74
|
+
/** definition for feedback */
|
|
75
|
+
export interface Feedback {
|
|
76
|
+
/** id */
|
|
77
|
+
id: string;
|
|
78
|
+
/** comment */
|
|
79
|
+
comment: string;
|
|
80
|
+
/** resolved */
|
|
81
|
+
resolved: boolean;
|
|
82
|
+
/** category */
|
|
83
|
+
category: string[];
|
|
84
|
+
/** timestamp */
|
|
85
|
+
timestamp: string;
|
|
86
|
+
}
|
|
87
|
+
/** definition for infobox_activity */
|
|
88
|
+
export interface InfoboxActivity {
|
|
89
|
+
/** image */
|
|
90
|
+
image: string[];
|
|
91
|
+
/** is_members_only */
|
|
92
|
+
is_members_only: boolean;
|
|
93
|
+
/** default_version */
|
|
94
|
+
default_version: boolean;
|
|
95
|
+
}
|
|
96
|
+
/** definition for infobox_bonuses */
|
|
97
|
+
export interface InfoboxBonuses {
|
|
98
|
+
/** stab_attack_bonus */
|
|
99
|
+
stab_attack_bonus: number;
|
|
100
|
+
/** slash_attack_bonus */
|
|
101
|
+
slash_attack_bonus: number;
|
|
102
|
+
/** crush_attack_bonus */
|
|
103
|
+
crush_attack_bonus: number;
|
|
104
|
+
/** range_attack_bonus */
|
|
105
|
+
range_attack_bonus: number;
|
|
106
|
+
/** magic_attack_bonus */
|
|
107
|
+
magic_attack_bonus: number;
|
|
108
|
+
/** stab_defence_bonus */
|
|
109
|
+
stab_defence_bonus: number;
|
|
110
|
+
/** slash_defence_bonus */
|
|
111
|
+
slash_defence_bonus: number;
|
|
112
|
+
/** crush_defence_bonus */
|
|
113
|
+
crush_defence_bonus: number;
|
|
114
|
+
/** range_defence_bonus */
|
|
115
|
+
range_defence_bonus: number;
|
|
116
|
+
/** magic_defence_bonus */
|
|
117
|
+
magic_defence_bonus: number;
|
|
118
|
+
/** strength_bonus */
|
|
119
|
+
strength_bonus: number;
|
|
120
|
+
/** ranged_strength_bonus */
|
|
121
|
+
ranged_strength_bonus: number;
|
|
122
|
+
/** prayer_bonus */
|
|
123
|
+
prayer_bonus: number;
|
|
124
|
+
/** magic_damage_bonus */
|
|
125
|
+
magic_damage_bonus: number;
|
|
126
|
+
/** equipment_slot */
|
|
127
|
+
equipment_slot: string;
|
|
128
|
+
/** weapon_attack_speed */
|
|
129
|
+
weapon_attack_speed: number;
|
|
130
|
+
/** weapon_attack_range */
|
|
131
|
+
weapon_attack_range: string;
|
|
132
|
+
/** combat_style */
|
|
133
|
+
combat_style: string;
|
|
134
|
+
}
|
|
135
|
+
/** definition for infobox_construction */
|
|
136
|
+
export interface InfoboxConstruction {
|
|
137
|
+
/** default_version */
|
|
138
|
+
default_version: boolean;
|
|
139
|
+
/** image */
|
|
140
|
+
image: string[];
|
|
141
|
+
/** icon */
|
|
142
|
+
icon: string[];
|
|
143
|
+
/** item_id */
|
|
144
|
+
item_id: number[];
|
|
145
|
+
/** object_id */
|
|
146
|
+
object_id: number[];
|
|
147
|
+
/** level */
|
|
148
|
+
level: number;
|
|
149
|
+
/** experience */
|
|
150
|
+
experience: number;
|
|
151
|
+
/** uses_skill */
|
|
152
|
+
uses_skill: string[];
|
|
153
|
+
}
|
|
154
|
+
/** definition for infobox_grid_master_unlock */
|
|
155
|
+
export interface InfoboxGridMasterUnlock {
|
|
156
|
+
/** image */
|
|
157
|
+
image: string;
|
|
158
|
+
/** difficulty */
|
|
159
|
+
difficulty: string;
|
|
160
|
+
/** row */
|
|
161
|
+
row: string;
|
|
162
|
+
/** column */
|
|
163
|
+
column: string;
|
|
164
|
+
}
|
|
165
|
+
/** definition for infobox_item */
|
|
166
|
+
export interface InfoboxItem {
|
|
167
|
+
/** item_name */
|
|
168
|
+
item_name: string;
|
|
169
|
+
/** image */
|
|
170
|
+
image: string[];
|
|
171
|
+
/** is_members_only */
|
|
172
|
+
is_members_only: boolean;
|
|
173
|
+
/** item_id */
|
|
174
|
+
item_id: string[];
|
|
175
|
+
/** examine */
|
|
176
|
+
examine: string;
|
|
177
|
+
/** high_alchemy_value */
|
|
178
|
+
high_alchemy_value: number;
|
|
179
|
+
/** league_region */
|
|
180
|
+
league_region: string;
|
|
181
|
+
/** release_date */
|
|
182
|
+
release_date: string;
|
|
183
|
+
/** removal_date */
|
|
184
|
+
removal_date: string;
|
|
185
|
+
/** value */
|
|
186
|
+
value: number;
|
|
187
|
+
/** weight */
|
|
188
|
+
weight: number;
|
|
189
|
+
/** version_anchor */
|
|
190
|
+
version_anchor: string;
|
|
191
|
+
/** buy_limit */
|
|
192
|
+
buy_limit: number;
|
|
193
|
+
/** default_version */
|
|
194
|
+
default_version: boolean;
|
|
195
|
+
/** quest */
|
|
196
|
+
quest: string;
|
|
197
|
+
/** tradeable */
|
|
198
|
+
tradeable: boolean;
|
|
199
|
+
}
|
|
200
|
+
/** definition for infobox_location */
|
|
201
|
+
export interface InfoboxLocation {
|
|
202
|
+
/** is_members_only */
|
|
203
|
+
is_members_only: boolean;
|
|
204
|
+
}
|
|
205
|
+
/** definition for infobox_monster */
|
|
206
|
+
export interface InfoboxMonster {
|
|
207
|
+
/** default_version */
|
|
208
|
+
default_version: boolean;
|
|
209
|
+
/** name */
|
|
210
|
+
name: string;
|
|
211
|
+
/** image */
|
|
212
|
+
image: string[];
|
|
213
|
+
/** is_members_only */
|
|
214
|
+
is_members_only: boolean;
|
|
215
|
+
/** id */
|
|
216
|
+
id: string[];
|
|
217
|
+
/** examine */
|
|
218
|
+
examine: string;
|
|
219
|
+
/** league_region */
|
|
220
|
+
league_region: string;
|
|
221
|
+
/** release_date */
|
|
222
|
+
release_date: string;
|
|
223
|
+
/** version_anchor */
|
|
224
|
+
version_anchor: string;
|
|
225
|
+
/** combat_level */
|
|
226
|
+
combat_level: number;
|
|
227
|
+
/** poisonous */
|
|
228
|
+
poisonous: string;
|
|
229
|
+
/** attribute */
|
|
230
|
+
attribute: string[];
|
|
231
|
+
/** hitpoints */
|
|
232
|
+
hitpoints: number;
|
|
233
|
+
/** max_hit */
|
|
234
|
+
max_hit: string[];
|
|
235
|
+
/** slayer_level */
|
|
236
|
+
slayer_level: number;
|
|
237
|
+
/** slayer_experience */
|
|
238
|
+
slayer_experience: number;
|
|
239
|
+
/** slayer_category */
|
|
240
|
+
slayer_category: string[];
|
|
241
|
+
/** uses_skill */
|
|
242
|
+
uses_skill: string[];
|
|
243
|
+
/** assigned_by */
|
|
244
|
+
assigned_by: string[];
|
|
245
|
+
/** attack_level */
|
|
246
|
+
attack_level: number;
|
|
247
|
+
/** strength_level */
|
|
248
|
+
strength_level: number;
|
|
249
|
+
/** defence_level */
|
|
250
|
+
defence_level: number;
|
|
251
|
+
/** ranged_level */
|
|
252
|
+
ranged_level: number;
|
|
253
|
+
/** magic_level */
|
|
254
|
+
magic_level: number;
|
|
255
|
+
/** magic_attack_bonus */
|
|
256
|
+
magic_attack_bonus: number;
|
|
257
|
+
/** range_attack_bonus */
|
|
258
|
+
range_attack_bonus: number;
|
|
259
|
+
/** stab_attack_bonus */
|
|
260
|
+
stab_attack_bonus: number;
|
|
261
|
+
/** slash_attack_bonus */
|
|
262
|
+
slash_attack_bonus: number;
|
|
263
|
+
/** crush_attack_bonus */
|
|
264
|
+
crush_attack_bonus: number;
|
|
265
|
+
/** stab_defence_bonus */
|
|
266
|
+
stab_defence_bonus: number;
|
|
267
|
+
/** slash_defence_bonus */
|
|
268
|
+
slash_defence_bonus: number;
|
|
269
|
+
/** crush_defence_bonus */
|
|
270
|
+
crush_defence_bonus: number;
|
|
271
|
+
/** magic_defence_bonus */
|
|
272
|
+
magic_defence_bonus: number;
|
|
273
|
+
/** range_defence_bonus */
|
|
274
|
+
range_defence_bonus: number;
|
|
275
|
+
/** light_range_defence_bonus */
|
|
276
|
+
light_range_defence_bonus: number;
|
|
277
|
+
/** standard_range_defence_bonus */
|
|
278
|
+
standard_range_defence_bonus: number;
|
|
279
|
+
/** heavy_range_defence_bonus */
|
|
280
|
+
heavy_range_defence_bonus: number;
|
|
281
|
+
/** attack_bonus */
|
|
282
|
+
attack_bonus: number;
|
|
283
|
+
/** strength_bonus */
|
|
284
|
+
strength_bonus: number;
|
|
285
|
+
/** range_strength_bonus */
|
|
286
|
+
range_strength_bonus: number;
|
|
287
|
+
/** magic_damage_bonus */
|
|
288
|
+
magic_damage_bonus: number;
|
|
289
|
+
/** poison_immune */
|
|
290
|
+
poison_immune: string;
|
|
291
|
+
/** venom_immune */
|
|
292
|
+
venom_immune: string;
|
|
293
|
+
/** thrall_immune */
|
|
294
|
+
thrall_immune: string;
|
|
295
|
+
/** cannon_immune */
|
|
296
|
+
cannon_immune: string;
|
|
297
|
+
/** burn_immune */
|
|
298
|
+
burn_immune: string;
|
|
299
|
+
/** attack_style */
|
|
300
|
+
attack_style: string[];
|
|
301
|
+
/** attack_speed */
|
|
302
|
+
attack_speed: number;
|
|
303
|
+
/** experience_bonus */
|
|
304
|
+
experience_bonus: number;
|
|
305
|
+
/** flat_armour */
|
|
306
|
+
flat_armour: number;
|
|
307
|
+
/** size */
|
|
308
|
+
size: number;
|
|
309
|
+
/** freeze_resistance */
|
|
310
|
+
freeze_resistance: string;
|
|
311
|
+
/** elemental_weakness */
|
|
312
|
+
elemental_weakness: string;
|
|
313
|
+
/** elemental_weakness_percent */
|
|
314
|
+
elemental_weakness_percent: number;
|
|
315
|
+
}
|
|
316
|
+
/** definition for infobox_npc */
|
|
317
|
+
export interface InfoboxNpc {
|
|
318
|
+
/** default_version */
|
|
319
|
+
default_version: boolean;
|
|
320
|
+
/** image */
|
|
321
|
+
image: string[];
|
|
322
|
+
/** is_members_only */
|
|
323
|
+
is_members_only: boolean;
|
|
324
|
+
/** league_region */
|
|
325
|
+
league_region: string;
|
|
326
|
+
/** npc_id */
|
|
327
|
+
npc_id: string[];
|
|
328
|
+
/** npc_name */
|
|
329
|
+
npc_name: string;
|
|
330
|
+
/** release */
|
|
331
|
+
release: string;
|
|
332
|
+
/** examine */
|
|
333
|
+
examine: string;
|
|
334
|
+
/** location */
|
|
335
|
+
location: string;
|
|
336
|
+
/** quest */
|
|
337
|
+
quest: string;
|
|
338
|
+
}
|
|
339
|
+
/** definition for infobox_pure */
|
|
340
|
+
export interface InfoboxPure {
|
|
341
|
+
/** name */
|
|
342
|
+
name: string;
|
|
343
|
+
/** image */
|
|
344
|
+
image: string;
|
|
345
|
+
/** is_members_only */
|
|
346
|
+
is_members_only: boolean;
|
|
347
|
+
/** type */
|
|
348
|
+
type: string[];
|
|
349
|
+
/** max_hit */
|
|
350
|
+
max_hit: string[];
|
|
351
|
+
/** combat_level */
|
|
352
|
+
combat_level: string[];
|
|
353
|
+
/** hitpoints */
|
|
354
|
+
hitpoints: string;
|
|
355
|
+
/** attack_level */
|
|
356
|
+
attack_level: string;
|
|
357
|
+
/** strength_level */
|
|
358
|
+
strength_level: string;
|
|
359
|
+
/** defence_level */
|
|
360
|
+
defence_level: string;
|
|
361
|
+
/** ranged_level */
|
|
362
|
+
ranged_level: string;
|
|
363
|
+
/** magic_level */
|
|
364
|
+
magic_level: string;
|
|
365
|
+
/** prayer_level */
|
|
366
|
+
prayer_level: string;
|
|
367
|
+
/** attack_style */
|
|
368
|
+
attack_style: string;
|
|
369
|
+
/** all_attack_style */
|
|
370
|
+
all_attack_style: string[];
|
|
371
|
+
}
|
|
372
|
+
/** definition for infobox_scenery */
|
|
373
|
+
export interface InfoboxScenery {
|
|
374
|
+
/** default_version */
|
|
375
|
+
default_version: boolean;
|
|
376
|
+
/** image */
|
|
377
|
+
image: string[];
|
|
378
|
+
/** is_members_only */
|
|
379
|
+
is_members_only: boolean;
|
|
380
|
+
/** league_region */
|
|
381
|
+
league_region: string;
|
|
382
|
+
/** release */
|
|
383
|
+
release: string;
|
|
384
|
+
/** object_id */
|
|
385
|
+
object_id: number[];
|
|
386
|
+
/** npc_id */
|
|
387
|
+
npc_id: number[];
|
|
388
|
+
}
|
|
389
|
+
/** definition for infobox_ship_part */
|
|
390
|
+
export interface InfoboxShipPart {
|
|
391
|
+
/** image */
|
|
392
|
+
image: string[];
|
|
393
|
+
/** icon */
|
|
394
|
+
icon: string[];
|
|
395
|
+
/** item_id */
|
|
396
|
+
item_id: number[];
|
|
397
|
+
/** object_id */
|
|
398
|
+
object_id: number[];
|
|
399
|
+
}
|
|
400
|
+
/** definition for infobox_spell */
|
|
401
|
+
export interface InfoboxSpell {
|
|
402
|
+
/** image */
|
|
403
|
+
image: string;
|
|
404
|
+
/** is_members_only */
|
|
405
|
+
is_members_only: boolean;
|
|
406
|
+
/** spellbook */
|
|
407
|
+
spellbook: string;
|
|
408
|
+
/** uses_material */
|
|
409
|
+
uses_material: string[];
|
|
410
|
+
/** json */
|
|
411
|
+
json: string;
|
|
412
|
+
}
|
|
413
|
+
/** definition for interface */
|
|
414
|
+
export interface Interface {
|
|
415
|
+
/** name */
|
|
416
|
+
name: string;
|
|
417
|
+
/** id */
|
|
418
|
+
id: number;
|
|
419
|
+
}
|
|
420
|
+
/** definition for item_id */
|
|
421
|
+
export interface ItemId {
|
|
422
|
+
/** id */
|
|
423
|
+
id: string[];
|
|
424
|
+
}
|
|
425
|
+
/** definition for locline */
|
|
426
|
+
export interface Locline {
|
|
427
|
+
/** members */
|
|
428
|
+
members: boolean;
|
|
429
|
+
/** mapid */
|
|
430
|
+
mapid: number;
|
|
431
|
+
/** plane */
|
|
432
|
+
plane: number;
|
|
433
|
+
/** coordinates */
|
|
434
|
+
coordinates: string[];
|
|
435
|
+
/** leagueregion */
|
|
436
|
+
leagueregion: string[];
|
|
437
|
+
}
|
|
438
|
+
/** definition for logs */
|
|
439
|
+
export interface Logs {
|
|
440
|
+
/** module */
|
|
441
|
+
module: string;
|
|
442
|
+
/** message */
|
|
443
|
+
message: string;
|
|
444
|
+
}
|
|
445
|
+
/** definition for map */
|
|
446
|
+
export interface Map {
|
|
447
|
+
/** features */
|
|
448
|
+
features: string;
|
|
449
|
+
/** options */
|
|
450
|
+
options: string;
|
|
451
|
+
/** is_historic */
|
|
452
|
+
is_historic: boolean;
|
|
453
|
+
}
|
|
454
|
+
/** definition for mine */
|
|
455
|
+
export interface Mine {
|
|
456
|
+
/** is_members_only */
|
|
457
|
+
is_members_only: boolean;
|
|
458
|
+
/** json */
|
|
459
|
+
json: string;
|
|
460
|
+
}
|
|
461
|
+
/** definition for money_making_guide */
|
|
462
|
+
export interface MoneyMakingGuide {
|
|
463
|
+
/** value */
|
|
464
|
+
value: string;
|
|
465
|
+
/** recurring */
|
|
466
|
+
recurring: boolean;
|
|
467
|
+
/** json */
|
|
468
|
+
json: string;
|
|
469
|
+
}
|
|
470
|
+
/** definition for music */
|
|
471
|
+
export interface Music {
|
|
472
|
+
/** title */
|
|
473
|
+
title: string;
|
|
474
|
+
/** number */
|
|
475
|
+
number: number;
|
|
476
|
+
/** duration */
|
|
477
|
+
duration: string;
|
|
478
|
+
/** composer */
|
|
479
|
+
composer: string[];
|
|
480
|
+
/** unlock_hint */
|
|
481
|
+
unlock_hint: string;
|
|
482
|
+
/** track */
|
|
483
|
+
track: string;
|
|
484
|
+
/** release_date */
|
|
485
|
+
release_date: string;
|
|
486
|
+
/** release_update */
|
|
487
|
+
release_update: string;
|
|
488
|
+
/** is_members_only */
|
|
489
|
+
is_members_only: boolean;
|
|
490
|
+
/** is_jingle */
|
|
491
|
+
is_jingle: boolean;
|
|
492
|
+
}
|
|
493
|
+
/** definition for music_map */
|
|
494
|
+
export interface MusicMap {
|
|
495
|
+
/** location_json */
|
|
496
|
+
location_json: string;
|
|
497
|
+
/** music_tracks */
|
|
498
|
+
music_tracks: string;
|
|
499
|
+
/** is_historic */
|
|
500
|
+
is_historic: boolean;
|
|
501
|
+
}
|
|
502
|
+
/** definition for npc_id */
|
|
503
|
+
export interface NpcId {
|
|
504
|
+
/** id */
|
|
505
|
+
id: string[];
|
|
506
|
+
}
|
|
507
|
+
/** definition for object_id */
|
|
508
|
+
export interface ObjectId {
|
|
509
|
+
/** id */
|
|
510
|
+
id: string[];
|
|
511
|
+
}
|
|
512
|
+
/** definition for quest */
|
|
513
|
+
export interface Quest {
|
|
514
|
+
/** description */
|
|
515
|
+
description: string;
|
|
516
|
+
/** enemies_to_defeat */
|
|
517
|
+
enemies_to_defeat: string;
|
|
518
|
+
/** ironman_concerns */
|
|
519
|
+
ironman_concerns: string;
|
|
520
|
+
/** items_required */
|
|
521
|
+
items_required: string;
|
|
522
|
+
/** official_difficulty */
|
|
523
|
+
official_difficulty: string;
|
|
524
|
+
/** official_length */
|
|
525
|
+
official_length: string;
|
|
526
|
+
/** requirements */
|
|
527
|
+
requirements: string;
|
|
528
|
+
/** start_point */
|
|
529
|
+
start_point: string;
|
|
530
|
+
/** json */
|
|
531
|
+
json: string;
|
|
532
|
+
}
|
|
533
|
+
/** definition for recipe */
|
|
534
|
+
export interface Recipe {
|
|
535
|
+
/** uses_material */
|
|
536
|
+
uses_material: string[];
|
|
537
|
+
/** uses_tool */
|
|
538
|
+
uses_tool: string[];
|
|
539
|
+
/** uses_facility */
|
|
540
|
+
uses_facility: string[];
|
|
541
|
+
/** is_members_only */
|
|
542
|
+
is_members_only: boolean;
|
|
543
|
+
/** is_boostable */
|
|
544
|
+
is_boostable: string[];
|
|
545
|
+
/** uses_skill */
|
|
546
|
+
uses_skill: string[];
|
|
547
|
+
/** source_template */
|
|
548
|
+
source_template: string;
|
|
549
|
+
/** production_json */
|
|
550
|
+
production_json: string;
|
|
551
|
+
}
|
|
552
|
+
/** definition for recommended_equipment */
|
|
553
|
+
export interface RecommendedEquipment {
|
|
554
|
+
/** json */
|
|
555
|
+
json: string;
|
|
556
|
+
}
|
|
557
|
+
/** definition for seachart */
|
|
558
|
+
export interface Seachart {
|
|
559
|
+
/** description */
|
|
560
|
+
description: string;
|
|
561
|
+
/** id */
|
|
562
|
+
id: number;
|
|
563
|
+
/** level */
|
|
564
|
+
level: number;
|
|
565
|
+
/** type */
|
|
566
|
+
type: string;
|
|
567
|
+
/** sea */
|
|
568
|
+
sea: string;
|
|
569
|
+
/** ocean */
|
|
570
|
+
ocean: string;
|
|
571
|
+
/** location */
|
|
572
|
+
location: string;
|
|
573
|
+
/** location2 */
|
|
574
|
+
location2: string;
|
|
575
|
+
/** hazard */
|
|
576
|
+
hazard: string;
|
|
577
|
+
/** xp */
|
|
578
|
+
xp: number;
|
|
579
|
+
}
|
|
580
|
+
/** definition for sound_effect */
|
|
581
|
+
export interface SoundEffect {
|
|
582
|
+
/** name */
|
|
583
|
+
name: string;
|
|
584
|
+
/** id */
|
|
585
|
+
id: number;
|
|
586
|
+
}
|
|
587
|
+
/** definition for storeline */
|
|
588
|
+
export interface Storeline {
|
|
589
|
+
/** sold_by */
|
|
590
|
+
sold_by: string;
|
|
591
|
+
/** sold_item */
|
|
592
|
+
sold_item: string;
|
|
593
|
+
/** sold_item_image */
|
|
594
|
+
sold_item_image: string;
|
|
595
|
+
/** store_buy_price */
|
|
596
|
+
store_buy_price: string;
|
|
597
|
+
/** store_sell_price */
|
|
598
|
+
store_sell_price: string;
|
|
599
|
+
/** store_currency */
|
|
600
|
+
store_currency: string;
|
|
601
|
+
/** store_delta */
|
|
602
|
+
store_delta: string;
|
|
603
|
+
/** store_stock */
|
|
604
|
+
store_stock: string;
|
|
605
|
+
/** store_buy_multiplier */
|
|
606
|
+
store_buy_multiplier: string;
|
|
607
|
+
/** store_sell_multiplier */
|
|
608
|
+
store_sell_multiplier: string;
|
|
609
|
+
/** restock_time */
|
|
610
|
+
restock_time: string;
|
|
611
|
+
/** store_notes */
|
|
612
|
+
store_notes: string;
|
|
613
|
+
/** sold_item_json */
|
|
614
|
+
sold_item_json: string;
|
|
615
|
+
}
|
|
616
|
+
/** definition for testing_bucket */
|
|
617
|
+
export interface TestingBucket {
|
|
618
|
+
/** PAGE_NR */
|
|
619
|
+
PAGE_NR: string;
|
|
620
|
+
/** PAGE_R */
|
|
621
|
+
PAGE_R: string[];
|
|
622
|
+
/** TEXT_NR */
|
|
623
|
+
TEXT_NR: string;
|
|
624
|
+
/** TEXT_R */
|
|
625
|
+
TEXT_R: string[];
|
|
626
|
+
/** INTEGER_NR */
|
|
627
|
+
INTEGER_NR: number;
|
|
628
|
+
/** INTEGER_R */
|
|
629
|
+
INTEGER_R: number[];
|
|
630
|
+
/** DOUBLE_NR */
|
|
631
|
+
DOUBLE_NR: number;
|
|
632
|
+
/** DOUBLE_R */
|
|
633
|
+
DOUBLE_R: number[];
|
|
634
|
+
/** BOOLEAN_NR */
|
|
635
|
+
BOOLEAN_NR: boolean;
|
|
636
|
+
/** BOOLEAN_R */
|
|
637
|
+
BOOLEAN_R: boolean[];
|
|
638
|
+
}
|
|
639
|
+
/** definition for transcript */
|
|
640
|
+
export interface Transcript {
|
|
641
|
+
/** npcs */
|
|
642
|
+
npcs: string[];
|
|
643
|
+
}
|
|
644
|
+
/** definition for update */
|
|
645
|
+
export interface Update {
|
|
646
|
+
/** date */
|
|
647
|
+
date: number;
|
|
648
|
+
/** type */
|
|
649
|
+
type: string;
|
|
650
|
+
/** year */
|
|
651
|
+
year: number;
|
|
652
|
+
/** month */
|
|
653
|
+
month: number;
|
|
654
|
+
/** day */
|
|
655
|
+
day: number;
|
|
656
|
+
}
|
|
657
|
+
/** definition for varbit */
|
|
658
|
+
export interface Varbit {
|
|
659
|
+
/** content */
|
|
660
|
+
content: string;
|
|
661
|
+
/** name */
|
|
662
|
+
name: string;
|
|
663
|
+
/** index */
|
|
664
|
+
index: number;
|
|
665
|
+
}
|
|
666
|
+
/** Runtime list of fields for each bucket. */
|
|
667
|
+
export declare const BUCKET_FIELDS: Record<string, string[]>;
|
|
668
|
+
/** Registry mapping bucket names to their types. */
|
|
669
|
+
export interface BucketRegistry {
|
|
670
|
+
combat_achievement: CombatAchievement;
|
|
671
|
+
dependency_list: DependencyList;
|
|
672
|
+
drop_table_sources: DropTableSources;
|
|
673
|
+
dropsline: Dropsline;
|
|
674
|
+
exchange: Exchange;
|
|
675
|
+
feedback: Feedback;
|
|
676
|
+
infobox_activity: InfoboxActivity;
|
|
677
|
+
infobox_bonuses: InfoboxBonuses;
|
|
678
|
+
infobox_construction: InfoboxConstruction;
|
|
679
|
+
infobox_grid_master_unlock: InfoboxGridMasterUnlock;
|
|
680
|
+
infobox_item: InfoboxItem;
|
|
681
|
+
infobox_location: InfoboxLocation;
|
|
682
|
+
infobox_monster: InfoboxMonster;
|
|
683
|
+
infobox_npc: InfoboxNpc;
|
|
684
|
+
infobox_pure: InfoboxPure;
|
|
685
|
+
infobox_scenery: InfoboxScenery;
|
|
686
|
+
infobox_ship_part: InfoboxShipPart;
|
|
687
|
+
infobox_spell: InfoboxSpell;
|
|
688
|
+
interface: Interface;
|
|
689
|
+
item_id: ItemId;
|
|
690
|
+
locline: Locline;
|
|
691
|
+
logs: Logs;
|
|
692
|
+
map: Map;
|
|
693
|
+
mine: Mine;
|
|
694
|
+
money_making_guide: MoneyMakingGuide;
|
|
695
|
+
music: Music;
|
|
696
|
+
music_map: MusicMap;
|
|
697
|
+
npc_id: NpcId;
|
|
698
|
+
object_id: ObjectId;
|
|
699
|
+
quest: Quest;
|
|
700
|
+
recipe: Recipe;
|
|
701
|
+
recommended_equipment: RecommendedEquipment;
|
|
702
|
+
seachart: Seachart;
|
|
703
|
+
sound_effect: SoundEffect;
|
|
704
|
+
storeline: Storeline;
|
|
705
|
+
testing_bucket: TestingBucket;
|
|
706
|
+
transcript: Transcript;
|
|
707
|
+
update: Update;
|
|
708
|
+
varbit: Varbit;
|
|
709
|
+
}
|
|
710
|
+
/** Union of all valid bucket names. */
|
|
711
|
+
export type BucketName = keyof BucketRegistry;
|
|
712
|
+
//# sourceMappingURL=definitions.d.ts.map
|