-
Notifications
You must be signed in to change notification settings - Fork 2
/
schema-items.json
486 lines (486 loc) · 12.2 KB
/
schema-items.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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
{
"id": {
"description": "Unique OSRS item ID number.",
"type": "integer",
"required": true,
"nullable": false
},
"name": {
"description": "The name of the item.",
"type": "string",
"required": true,
"nullable": false
},
"last_updated": {
"description": "The last time (UTC) the item was updated (in ISO8601 date format).",
"type": "string",
"required": true,
"nullable": false,
"regex": "^(20[0-9]{2})-([012][0-9])-([0123][0-9])$"
},
"incomplete": {
"description": "If the item has incomplete wiki data.",
"type": "boolean",
"required": true,
"nullable": false
},
"members": {
"description": "If the item is a members-only.",
"type": "boolean",
"required": true,
"nullable": false
},
"tradeable": {
"description": "If the item is tradeable (between players and on the GE).",
"type": "boolean",
"required": true,
"nullable": false
},
"tradeable_on_ge": {
"description": "If the item is tradeable (only on GE).",
"type": "boolean",
"required": true,
"nullable": false
},
"stackable": {
"description": "If the item is stackable (in inventory).",
"type": "boolean",
"required": true,
"nullable": false
},
"stacked": {
"description": "If the item is stacked, indicated by the stack count.",
"type": "integer",
"required": true,
"nullable": true
},
"noted": {
"description": "If the item is noted.",
"type": "boolean",
"required": true,
"nullable": false
},
"noteable": {
"description": "If the item is noteable.",
"type": "boolean",
"required": true,
"nullable": false
},
"linked_id_item": {
"description": "The linked ID of the actual item (if noted/placeholder).",
"type": "integer",
"required": true,
"nullable": true
},
"linked_id_noted": {
"description": "The linked ID of an item in noted form.",
"type": "integer",
"required": true,
"nullable": true
},
"linked_id_placeholder": {
"description": "The linked ID of an item in placeholder form.",
"type": "integer",
"required": true,
"nullable": true
},
"placeholder": {
"description": "If the item is a placeholder.",
"type": "boolean",
"required": true,
"nullable": false
},
"equipable": {
"description": "If the item is equipable (based on right-click menu entry).",
"type": "boolean",
"required": true,
"nullable": false
},
"equipable_by_player": {
"description": "If the item is equipable in-game by a player.",
"type": "boolean",
"required": true,
"nullable": false
},
"equipable_weapon": {
"description": "If the item is an equipable weapon.",
"type": "boolean",
"required": true,
"nullable": false
},
"cost": {
"description": "The store price of an item.",
"type": "integer",
"required": true,
"nullable": false
},
"lowalch": {
"description": "The low alchemy value of the item (cost * 0.4).",
"type": "integer",
"required": true,
"nullable": true
},
"highalch": {
"description": "The high alchemy value of the item (cost * 0.6).",
"type": "integer",
"required": true,
"nullable": true
},
"weight": {
"description": "The weight (in kilograms) of the item.",
"type": "float",
"required": true,
"nullable": true
},
"buy_limit": {
"description": "The Grand Exchange buy limit of the item.",
"type": "integer",
"required": true,
"nullable": true
},
"quest_item": {
"description": "If the item is associated with a quest.",
"type": "boolean",
"required": true,
"nullable": false
},
"release_date": {
"description": "Date the item was released (in ISO8601 format).",
"type": "string",
"required": true,
"nullable": true,
"regex": "^(2[0-9]{3})-([012][0-9])-([0123][0-9])$"
},
"duplicate": {
"description": "If the item is a duplicate.",
"type": "boolean",
"required": true,
"nullable": false
},
"examine": {
"description": "The examine text for the item.",
"type": "string",
"required": true,
"nullable": true
},
"icon": {
"description": "The item icon (in base64 encoding).",
"type": "string",
"required": true,
"nullable": false
},
"wiki_name": {
"description": "The OSRS Wiki name for the item.",
"type": "string",
"required": true,
"nullable": true
},
"wiki_url": {
"description": "The OSRS Wiki URL (possibly including anchor link).",
"type": "string",
"required": true,
"nullable": true
},
"equipment": {
"description": "The equipment bonuses of equipable armour/weapons.",
"type": "dict",
"required": true,
"nullable": true,
"schema": {
"attack_stab": {
"description": "The attack stab bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"attack_slash": {
"description": "The attack slash bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"attack_crush": {
"description": "The attack crush bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"attack_magic": {
"description": "The attack magic bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"attack_ranged": {
"description": "The attack ranged bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"defence_stab": {
"description": "The defence stab bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"defence_slash": {
"description": "The defence slash bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"defence_crush": {
"description": "The defence crush bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"defence_magic": {
"description": "The defence magic bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"defence_ranged": {
"description": "The defence ranged bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"melee_strength": {
"description": "The melee strength bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"ranged_strength": {
"description": "The ranged strength bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"magic_damage": {
"description": "The magic damage bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"prayer": {
"description": "The prayer bonus of the item.",
"type": "integer",
"required": true,
"nullable": false
},
"slot": {
"description": "The equipment slot associated with the item (e.g., head).",
"type": "string",
"required": true,
"nullable": false,
"allowed": [
"2h",
"ammo",
"body",
"cape",
"feet",
"hands",
"head",
"legs",
"neck",
"ring",
"shield",
"weapon"
]
},
"requirements": {
"description": "An object of requirements {skill: level}.",
"type": "dict",
"required": true,
"nullable": true,
"keysrules": {
"type": "string",
"allowed": [
"agility",
"attack",
"construction",
"cooking",
"crafting",
"defence",
"farming",
"firemaking",
"fishing",
"fletching",
"herblore",
"hitpoints",
"hunter",
"magic",
"mining",
"prayer",
"ranged",
"runecraft",
"slayer",
"smithing",
"strength",
"thieving",
"woodcutting",
"combat"
]
},
"valuesrules": {
"type": "integer"
}
}
}
},
"weapon": {
"description": "The weapon bonuses including attack speed, type and stance.",
"type": "dict",
"required": true,
"nullable": true,
"schema": {
"attack_speed": {
"description": "The attack speed of a weapon (in game ticks).",
"type": "integer",
"required": true,
"nullable": false
},
"weapon_type": {
"description": "The weapon classification (e.g., axes)",
"type": "string",
"required": true,
"nullable": false,
"allowed": [
"axe",
"blunt",
"bludgeon",
"bulwark",
"claw",
"polearm",
"pickaxe",
"scythe",
"slash_sword",
"spear",
"spiked",
"stab_sword",
"2h_sword",
"whip",
"bow",
"chinchompas",
"crossbow",
"thrown",
"staff",
"bladed_staff",
"powered_staff",
"banner",
"blaster",
"gun",
"polestaff",
"salamander",
"unarmed"
]
},
"stances": {
"description": "An array of weapon stance information.",
"type": "list",
"required": true,
"nullable": false,
"schema": {
"type": "dict",
"schema": {
"combat_style": {
"type": "string",
"nullable": false,
"required": true,
"allowed": [
"impale",
"aim and fire",
"reap",
"bash",
"long fuse",
"pummel",
"smash",
"blaze",
"flare",
"rapid",
"lunge",
"stab",
"swipe",
"short fuse",
"punch",
"kick",
"spike",
"scorch",
"focus",
"deflect",
"fend",
"block",
"medium fuse",
"flick",
"slash",
"longrange",
"hack",
"accurate",
"pound",
"chop",
"jab",
"lash",
"spell",
"spell (defensive)"
]
},
"attack_type": {
"type": "string",
"nullable": true,
"required": true,
"allowed": [
"spellcasting",
"stab",
"ranged",
"slash",
"crush",
"magic",
"defensive casting"
]
},
"attack_style": {
"type": "string",
"nullable": true,
"required": true,
"allowed": [
"aggressive",
"defensive",
"magic",
"controlled",
"accurate"
]
},
"experience": {
"type": "string",
"nullable": true,
"required": true,
"allowed": [
"defence",
"ranged and defence",
"ranged",
"shared",
"magic and defence",
"magic",
"strength",
"attack"
]
},
"boosts": {
"type": "string",
"nullable": true,
"required": true,
"allowed": [
"attack speed by 1 tick",
"attack range by 2 squares",
"accuracy and damage"
]
}
}
}
}
}
}
}