osrs-tools 0.1.1 → 0.2.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/README.md +106 -30
- package/package.json +90 -75
- package/src/index.ts +6 -433
- package/src/model/Requirement.ts +173 -0
- package/src/model/account/OsrsAccount.ts +82 -0
- package/src/model/quest/Quest.ts +44 -0
- package/src/model/quest/QuestTool.ts +96 -0
- package/src/model/slayer/Assignment.ts +40 -0
- package/src/model/slayer/SlayerMaster.ts +137 -0
- package/src/model/slayer/SlayerReward.ts +39 -0
- package/src/model/slayer/Task.ts +168 -0
- package/src/resources/QuestData.json +754 -0
- package/src/{data/Diaries → resources/quest}/diaries.json +3 -3
- package/src/{data/quest/questData.ts → resources/quest/questData.js} +169 -223
- package/src/{data/quest/questDataArray.json → resources/quest/questData.json} +950 -1833
- package/src/resources/quest/questDataArray.js +5489 -0
- package/src/{data/quest/questData.json → resources/quest/questDataArray.json} +642 -643
- package/src/{data/quest/miniquestQuestArray.json → resources/quest/subquestArray.js} +2 -2
- package/src/{data/quest/subQuestArray.json → resources/quest/subquestArray.json} +1 -1
- package/src/{data → resources}/quest/testObj.json +148 -148
- package/src/{data → resources}/quest/testarray.json +149 -149
- package/src/resources/quests/CooksAssistant.json +34 -0
- package/src/resources/slayer/Masters.ts +180 -0
- package/src/resources/slayer/SlayerData.ts +45 -0
- package/src/resources/slayer/SlayerExtends.ts +218 -0
- package/src/resources/slayer/SlayerUnlock.ts +194 -0
- package/src/resources/slayer/slayer.json +3581 -0
- package/src/resources/slayer/slayerBuys.ts +38 -0
- package/src/resources/slayer/slayerData.json +4431 -0
- package/src/resources/slayer/tasks/ChaelderTasks.ts +235 -0
- package/src/resources/slayer/tasks/DuradelTasks.ts +75 -0
- package/src/resources/slayer/tasks/KonarTasks.ts +6 -0
- package/src/resources/slayer/tasks/MazchnaTasks.ts +5 -0
- package/src/resources/slayer/tasks/NieveTasks.ts +235 -0
- package/src/resources/slayer/tasks/ReadTasks.ts +55 -0
- package/src/resources/slayer/tasks/SpriaTasks.ts +344 -0
- package/src/resources/slayer/tasks/Tureal.ts +436 -0
- package/src/resources/slayer/tasks/VannakaTasks.ts +236 -0
- package/src/resources/slayer/tasks/json/Chaeldar.json +348 -0
- package/src/resources/slayer/tasks/json/Duradel.json +541 -0
- package/src/resources/slayer/tasks/json/Krystilia.json +2 -0
- package/src/resources/slayer/tasks/json/Mazchna.json +379 -0
- package/src/resources/slayer/tasks/json/Neive.json +320 -0
- package/src/resources/slayer/tasks/json/Spria.json +345 -0
- package/src/resources/slayer/tasks/json/Tureal.json +341 -0
- package/src/resources/slayer/tasks/json/Vannaka.json +547 -0
- package/src/cli.js +0 -9
- package/src/data/farming/fruitTrees.json +0 -165
- package/src/data/farming/locations.json +0 -78
- package/src/data/farming/patches.json +0 -102
- package/src/data/farming/seeds.json +0 -170
- package/src/data/farming/teleports.json +0 -301
- package/src/data/farming/treePatches.json +0 -3
- package/src/data/farming/trees.json +0 -103
- package/src/data/quest/miniquestQuestArray.ts +0 -8
- package/src/data/quest/questDataArray.ts +0 -4134
- package/src/data/quest/subQuestArray.ts +0 -60
- package/src/tests/QuestTest.js +0 -71
- package/src/tests/getAllQuestSeries.ts +0 -6
- package/src/tests/test Quest Array.ts +0 -9
- package/src/tests/test Requirements.ts +0 -56
- package/src/tests/test.ts +0 -402
- package/src/tests/test3.js +0 -370
- package/src/tests/testQuestCompletion.js +0 -367
- package/src/tests/testSeed.js +0 -8
- package/src/utils/AchievementDiary.ts +0 -18
- package/src/utils/Farming/FarmingTool.ts +0 -110
- package/src/utils/Farming/Seed.js +0 -42
- package/src/utils/Farming/TreeSeed.js +0 -21
- package/src/utils/OsrsAccount.ts +0 -280
- package/src/utils/Quest.ts +0 -99
- package/src/utils/QuestTool.ts +0 -437
- package/src/utils/Requirement.ts +0 -63
- package/src/utils/Skill.ts +0 -11
- /package/src/{data/Diaries → resources/quest}/diariesArray.json +0 -0
- /package/src/{data → resources/quest}/exp.json +0 -0
|
@@ -0,0 +1,754 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": 1,
|
|
4
|
+
"name": "Cook's Assistant",
|
|
5
|
+
"difficulty": "Novice",
|
|
6
|
+
"skillRequirements": {},
|
|
7
|
+
"status": "Not Started",
|
|
8
|
+
"miniquest": false,
|
|
9
|
+
"shortName": "Cook's Assistant",
|
|
10
|
+
"url": "https://oldschool.runescape.wiki/w/Cook's_Assistant",
|
|
11
|
+
"series": "",
|
|
12
|
+
"members": false,
|
|
13
|
+
"questPoints": 1,
|
|
14
|
+
"length": "Very Short",
|
|
15
|
+
"age": "",
|
|
16
|
+
"startLocation": "Lumbridge Castle kitchen",
|
|
17
|
+
"difficultyLevel": "1",
|
|
18
|
+
"officialDifficulty": "Novice",
|
|
19
|
+
"officialLength": "Very Short",
|
|
20
|
+
"officialAge": "",
|
|
21
|
+
"itemRequirements": [
|
|
22
|
+
"N/A"
|
|
23
|
+
],
|
|
24
|
+
"recommendedItems": [],
|
|
25
|
+
"recommendedSkills": {},
|
|
26
|
+
"recommendedPrayers": [],
|
|
27
|
+
"questRequirements": [],
|
|
28
|
+
"rewards": {
|
|
29
|
+
"experience": {
|
|
30
|
+
"Cooking": 300
|
|
31
|
+
},
|
|
32
|
+
"items": []
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": 2,
|
|
37
|
+
"name": "Demon Slayer",
|
|
38
|
+
"difficulty": "Novice",
|
|
39
|
+
"skillRequirements": {},
|
|
40
|
+
"status": "Not Started",
|
|
41
|
+
"miniquest": false,
|
|
42
|
+
"shortName": "Demon Slayer",
|
|
43
|
+
"url": "https://oldschool.runescape.wiki/w/Demon_Slayer",
|
|
44
|
+
"series": "Demon Slayer, #1",
|
|
45
|
+
"members": false,
|
|
46
|
+
"questPoints": 3,
|
|
47
|
+
"length": "Short",
|
|
48
|
+
"age": "",
|
|
49
|
+
"startLocation": "Varrock Square",
|
|
50
|
+
"difficultyLevel": "1",
|
|
51
|
+
"officialDifficulty": "Novice",
|
|
52
|
+
"officialLength": "Short",
|
|
53
|
+
"officialAge": "",
|
|
54
|
+
"itemRequirements": [
|
|
55
|
+
"N/A"
|
|
56
|
+
],
|
|
57
|
+
"recommendedItems": [],
|
|
58
|
+
"recommendedSkills": {},
|
|
59
|
+
"recommendedPrayers": [],
|
|
60
|
+
"questRequirements": [],
|
|
61
|
+
"rewards": {
|
|
62
|
+
"experience": {},
|
|
63
|
+
"items": []
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"id": 3,
|
|
68
|
+
"name": "The Restless Ghost",
|
|
69
|
+
"difficulty": "Novice",
|
|
70
|
+
"skillRequirements": {},
|
|
71
|
+
"status": "Not Started",
|
|
72
|
+
"miniquest": false,
|
|
73
|
+
"shortName": "The Restless Ghost",
|
|
74
|
+
"url": "https://oldschool.runescape.wiki/w/The_Restless_Ghost",
|
|
75
|
+
"series": "",
|
|
76
|
+
"members": false,
|
|
77
|
+
"questPoints": 1,
|
|
78
|
+
"length": "Short",
|
|
79
|
+
"age": "",
|
|
80
|
+
"startLocation": "Lumbridge Church",
|
|
81
|
+
"difficultyLevel": "1",
|
|
82
|
+
"officialDifficulty": "Novice",
|
|
83
|
+
"officialLength": "Short",
|
|
84
|
+
"officialAge": "",
|
|
85
|
+
"itemRequirements": [
|
|
86
|
+
"N/A"
|
|
87
|
+
],
|
|
88
|
+
"recommendedItems": [],
|
|
89
|
+
"recommendedSkills": {},
|
|
90
|
+
"recommendedPrayers": [],
|
|
91
|
+
"questRequirements": [],
|
|
92
|
+
"rewards": {
|
|
93
|
+
"experience": {
|
|
94
|
+
"Prayer": 1125
|
|
95
|
+
},
|
|
96
|
+
"items": []
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": 4,
|
|
101
|
+
"name": "Romeo & Juliet",
|
|
102
|
+
"difficulty": "Novice",
|
|
103
|
+
"skillRequirements": {},
|
|
104
|
+
"status": "Not Started",
|
|
105
|
+
"miniquest": false,
|
|
106
|
+
"shortName": "Romeo & Juliet",
|
|
107
|
+
"url": "https://oldschool.runescape.wiki/w/Romeo_%26_Juliet",
|
|
108
|
+
"series": "",
|
|
109
|
+
"members": false,
|
|
110
|
+
"questPoints": 5,
|
|
111
|
+
"length": "Short",
|
|
112
|
+
"age": "",
|
|
113
|
+
"startLocation": "Varrock Square",
|
|
114
|
+
"difficultyLevel": "1",
|
|
115
|
+
"officialDifficulty": "Novice",
|
|
116
|
+
"officialLength": "Short",
|
|
117
|
+
"officialAge": "",
|
|
118
|
+
"itemRequirements": [
|
|
119
|
+
"N/A"
|
|
120
|
+
],
|
|
121
|
+
"recommendedItems": [],
|
|
122
|
+
"recommendedSkills": {},
|
|
123
|
+
"recommendedPrayers": [],
|
|
124
|
+
"questRequirements": [],
|
|
125
|
+
"rewards": {
|
|
126
|
+
"experience": {},
|
|
127
|
+
"items": []
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"id": 5,
|
|
132
|
+
"name": "Sheep Shearer",
|
|
133
|
+
"difficulty": "Novice",
|
|
134
|
+
"skillRequirements": {},
|
|
135
|
+
"status": "Not Started",
|
|
136
|
+
"miniquest": false,
|
|
137
|
+
"shortName": "Sheep Shearer",
|
|
138
|
+
"url": "https://oldschool.runescape.wiki/w/Sheep_Shearer",
|
|
139
|
+
"series": "",
|
|
140
|
+
"members": false,
|
|
141
|
+
"questPoints": 1,
|
|
142
|
+
"length": "Very Short",
|
|
143
|
+
"age": "",
|
|
144
|
+
"startLocation": "Fred the Farmer's house, north of Lumbridge",
|
|
145
|
+
"difficultyLevel": "1",
|
|
146
|
+
"officialDifficulty": "Novice",
|
|
147
|
+
"officialLength": "Very Short",
|
|
148
|
+
"officialAge": "",
|
|
149
|
+
"itemRequirements": [
|
|
150
|
+
"N/A"
|
|
151
|
+
],
|
|
152
|
+
"recommendedItems": [],
|
|
153
|
+
"recommendedSkills": {},
|
|
154
|
+
"recommendedPrayers": [],
|
|
155
|
+
"questRequirements": [],
|
|
156
|
+
"rewards": {
|
|
157
|
+
"experience": {
|
|
158
|
+
"Crafting": 150
|
|
159
|
+
},
|
|
160
|
+
"items": []
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"id": 6,
|
|
165
|
+
"name": "Shield of Arrav",
|
|
166
|
+
"difficulty": "Novice",
|
|
167
|
+
"skillRequirements": {},
|
|
168
|
+
"status": "Not Started",
|
|
169
|
+
"miniquest": false,
|
|
170
|
+
"shortName": "Shield of Arrav",
|
|
171
|
+
"url": "https://oldschool.runescape.wiki/w/Shield_of_Arrav",
|
|
172
|
+
"series": "",
|
|
173
|
+
"members": false,
|
|
174
|
+
"questPoints": 1,
|
|
175
|
+
"length": "Short",
|
|
176
|
+
"age": "",
|
|
177
|
+
"startLocation": "Varrock Palace library",
|
|
178
|
+
"difficultyLevel": "1",
|
|
179
|
+
"officialDifficulty": "Novice",
|
|
180
|
+
"officialLength": "Short",
|
|
181
|
+
"officialAge": "",
|
|
182
|
+
"itemRequirements": [
|
|
183
|
+
"N/A"
|
|
184
|
+
],
|
|
185
|
+
"recommendedItems": [],
|
|
186
|
+
"recommendedSkills": {},
|
|
187
|
+
"recommendedPrayers": [],
|
|
188
|
+
"questRequirements": [],
|
|
189
|
+
"rewards": {
|
|
190
|
+
"experience": {},
|
|
191
|
+
"items": []
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"id": 8,
|
|
196
|
+
"name": "Vampyre Slayer",
|
|
197
|
+
"difficulty": "Intermediate",
|
|
198
|
+
"skillRequirements": {},
|
|
199
|
+
"status": "Not Started",
|
|
200
|
+
"miniquest": false,
|
|
201
|
+
"shortName": "Vampyre Slayer",
|
|
202
|
+
"url": "https://oldschool.runescape.wiki/w/Vampyre_Slayer",
|
|
203
|
+
"series": "",
|
|
204
|
+
"members": false,
|
|
205
|
+
"questPoints": 3,
|
|
206
|
+
"length": "Very Short",
|
|
207
|
+
"age": "",
|
|
208
|
+
"startLocation": "Draynor Village",
|
|
209
|
+
"difficultyLevel": "2",
|
|
210
|
+
"officialDifficulty": "Intermediate",
|
|
211
|
+
"officialLength": "Very Short",
|
|
212
|
+
"officialAge": "",
|
|
213
|
+
"itemRequirements": [
|
|
214
|
+
"Garlic",
|
|
215
|
+
"Beer",
|
|
216
|
+
"Stake"
|
|
217
|
+
],
|
|
218
|
+
"recommendedItems": [],
|
|
219
|
+
"recommendedSkills": {},
|
|
220
|
+
"recommendedPrayers": [],
|
|
221
|
+
"questRequirements": [],
|
|
222
|
+
"rewards": {
|
|
223
|
+
"experience": {
|
|
224
|
+
"Attack": 4825
|
|
225
|
+
},
|
|
226
|
+
"items": []
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"id": 9,
|
|
231
|
+
"name": "Imp Catcher",
|
|
232
|
+
"difficulty": "Novice",
|
|
233
|
+
"skillRequirements": {},
|
|
234
|
+
"status": "Not Started",
|
|
235
|
+
"miniquest": false,
|
|
236
|
+
"shortName": "Imp Catcher",
|
|
237
|
+
"url": "https://oldschool.runescape.wiki/w/Imp_Catcher",
|
|
238
|
+
"series": "",
|
|
239
|
+
"members": false,
|
|
240
|
+
"questPoints": 1,
|
|
241
|
+
"length": "Short",
|
|
242
|
+
"age": "",
|
|
243
|
+
"startLocation": "Wizard's Tower",
|
|
244
|
+
"difficultyLevel": "1",
|
|
245
|
+
"officialDifficulty": "Novice",
|
|
246
|
+
"officialLength": "Short",
|
|
247
|
+
"officialAge": "",
|
|
248
|
+
"itemRequirements": [
|
|
249
|
+
"Red bead",
|
|
250
|
+
"Yellow bead",
|
|
251
|
+
"Black bead",
|
|
252
|
+
"White bead"
|
|
253
|
+
],
|
|
254
|
+
"recommendedItems": [],
|
|
255
|
+
"recommendedSkills": {},
|
|
256
|
+
"recommendedPrayers": [],
|
|
257
|
+
"questRequirements": [],
|
|
258
|
+
"rewards": {
|
|
259
|
+
"experience": {
|
|
260
|
+
"Magic": 875
|
|
261
|
+
},
|
|
262
|
+
"items": [
|
|
263
|
+
"Amulet of accuracy"
|
|
264
|
+
]
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"id": 10,
|
|
269
|
+
"name": "Prince Ali Rescue",
|
|
270
|
+
"difficulty": "Novice",
|
|
271
|
+
"skillRequirements": {},
|
|
272
|
+
"status": "Not Started",
|
|
273
|
+
"miniquest": false,
|
|
274
|
+
"shortName": "Prince Ali Rescue",
|
|
275
|
+
"url": "https://oldschool.runescape.wiki/w/Prince_Ali_Rescue",
|
|
276
|
+
"series": "Kharidian, #1",
|
|
277
|
+
"members": false,
|
|
278
|
+
"questPoints": 3,
|
|
279
|
+
"length": "Short",
|
|
280
|
+
"age": "",
|
|
281
|
+
"startLocation": "Al Kharid Palace",
|
|
282
|
+
"difficultyLevel": "1",
|
|
283
|
+
"officialDifficulty": "Novice",
|
|
284
|
+
"officialLength": "Short",
|
|
285
|
+
"officialAge": "",
|
|
286
|
+
"itemRequirements": [
|
|
287
|
+
"Rope",
|
|
288
|
+
"3 balls of wool",
|
|
289
|
+
"Yellow dye",
|
|
290
|
+
"2 onions",
|
|
291
|
+
"Redberries",
|
|
292
|
+
"Bucket of water",
|
|
293
|
+
"Flour",
|
|
294
|
+
"Ashes",
|
|
295
|
+
"Pink skirt",
|
|
296
|
+
"3 beers",
|
|
297
|
+
"Soft clay",
|
|
298
|
+
"Bronze bar"
|
|
299
|
+
],
|
|
300
|
+
"recommendedItems": [],
|
|
301
|
+
"recommendedSkills": {},
|
|
302
|
+
"recommendedPrayers": [],
|
|
303
|
+
"questRequirements": [],
|
|
304
|
+
"rewards": {
|
|
305
|
+
"experience": {},
|
|
306
|
+
"items": []
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"id": 11,
|
|
311
|
+
"name": "Doric's Quest",
|
|
312
|
+
"difficulty": "Novice",
|
|
313
|
+
"skillRequirements": {},
|
|
314
|
+
"status": "Not Started",
|
|
315
|
+
"miniquest": false,
|
|
316
|
+
"shortName": "Doric's Quest",
|
|
317
|
+
"url": "https://oldschool.runescape.wiki/w/Doric's_Quest",
|
|
318
|
+
"series": "",
|
|
319
|
+
"members": false,
|
|
320
|
+
"questPoints": 1,
|
|
321
|
+
"length": "Very Short",
|
|
322
|
+
"age": "",
|
|
323
|
+
"startLocation": "Doric's Anvil, north of Falador",
|
|
324
|
+
"difficultyLevel": "1",
|
|
325
|
+
"officialDifficulty": "Novice",
|
|
326
|
+
"officialLength": "Very Short",
|
|
327
|
+
"officialAge": "",
|
|
328
|
+
"itemRequirements": [
|
|
329
|
+
"6 clay",
|
|
330
|
+
"4 copper ore",
|
|
331
|
+
"2 iron ore"
|
|
332
|
+
],
|
|
333
|
+
"recommendedItems": [],
|
|
334
|
+
"recommendedSkills": {},
|
|
335
|
+
"recommendedPrayers": [],
|
|
336
|
+
"questRequirements": [],
|
|
337
|
+
"rewards": {
|
|
338
|
+
"experience": {
|
|
339
|
+
"Mining": 1300
|
|
340
|
+
},
|
|
341
|
+
"items": [
|
|
342
|
+
"Use of Doric's anvils"
|
|
343
|
+
]
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"id": 12,
|
|
348
|
+
"name": "Black Knights' Fortress",
|
|
349
|
+
"difficulty": "Intermediate",
|
|
350
|
+
"skillRequirements": {},
|
|
351
|
+
"status": "Not Started",
|
|
352
|
+
"miniquest": false,
|
|
353
|
+
"shortName": "Black Knights' Fortress",
|
|
354
|
+
"url": "https://oldschool.runescape.wiki/w/Black_Knights'_Fortress",
|
|
355
|
+
"series": "",
|
|
356
|
+
"members": false,
|
|
357
|
+
"questPoints": 3,
|
|
358
|
+
"length": "Very Short",
|
|
359
|
+
"age": "",
|
|
360
|
+
"startLocation": "Falador Castle",
|
|
361
|
+
"difficultyLevel": "2",
|
|
362
|
+
"officialDifficulty": "Intermediate",
|
|
363
|
+
"officialLength": "Very Short",
|
|
364
|
+
"officialAge": "",
|
|
365
|
+
"itemRequirements": [
|
|
366
|
+
"Bronze medium helmet",
|
|
367
|
+
"Iron chainbody",
|
|
368
|
+
"Cabbage"
|
|
369
|
+
],
|
|
370
|
+
"recommendedItems": [],
|
|
371
|
+
"recommendedSkills": {},
|
|
372
|
+
"recommendedPrayers": [],
|
|
373
|
+
"questRequirements": [],
|
|
374
|
+
"rewards": {
|
|
375
|
+
"experience": {},
|
|
376
|
+
"items": []
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"id": 13,
|
|
381
|
+
"name": "Witch's Potion",
|
|
382
|
+
"difficulty": "Novice",
|
|
383
|
+
"skillRequirements": {},
|
|
384
|
+
"status": "Not Started",
|
|
385
|
+
"miniquest": false,
|
|
386
|
+
"shortName": "Witch's Potion",
|
|
387
|
+
"url": "https://oldschool.runescape.wiki/w/Witch's_Potion",
|
|
388
|
+
"series": "",
|
|
389
|
+
"members": false,
|
|
390
|
+
"questPoints": 1,
|
|
391
|
+
"length": "Very Short",
|
|
392
|
+
"age": "",
|
|
393
|
+
"startLocation": "Rimmington",
|
|
394
|
+
"difficultyLevel": "1",
|
|
395
|
+
"officialDifficulty": "Novice",
|
|
396
|
+
"officialLength": "Very Short",
|
|
397
|
+
"officialAge": "",
|
|
398
|
+
"itemRequirements": [
|
|
399
|
+
"Burnt meat",
|
|
400
|
+
"Eye of newt",
|
|
401
|
+
"Onion",
|
|
402
|
+
"Rat's tail"
|
|
403
|
+
],
|
|
404
|
+
"recommendedItems": [],
|
|
405
|
+
"recommendedSkills": {},
|
|
406
|
+
"recommendedPrayers": [],
|
|
407
|
+
"questRequirements": [],
|
|
408
|
+
"rewards": {
|
|
409
|
+
"experience": {
|
|
410
|
+
"Magic": 325
|
|
411
|
+
},
|
|
412
|
+
"items": []
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"id": 14,
|
|
417
|
+
"name": "The Knight's Sword",
|
|
418
|
+
"difficulty": "Intermediate",
|
|
419
|
+
"skillRequirements": {
|
|
420
|
+
"Mining": {
|
|
421
|
+
"level": 10,
|
|
422
|
+
"isBoostable": false
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"status": "Not Started",
|
|
426
|
+
"miniquest": false,
|
|
427
|
+
"shortName": "The Knight's Sword",
|
|
428
|
+
"url": "https://oldschool.runescape.wiki/w/The_Knight's_Sword",
|
|
429
|
+
"series": "",
|
|
430
|
+
"members": false,
|
|
431
|
+
"questPoints": 1,
|
|
432
|
+
"length": "Short",
|
|
433
|
+
"age": "",
|
|
434
|
+
"startLocation": "Falador Castle",
|
|
435
|
+
"difficultyLevel": "2",
|
|
436
|
+
"officialDifficulty": "Intermediate",
|
|
437
|
+
"officialLength": "Short",
|
|
438
|
+
"officialAge": "",
|
|
439
|
+
"itemRequirements": [
|
|
440
|
+
"Iron bars (2)",
|
|
441
|
+
"Redberry pie"
|
|
442
|
+
],
|
|
443
|
+
"recommendedItems": [
|
|
444
|
+
"Food",
|
|
445
|
+
"Teleportation methods"
|
|
446
|
+
],
|
|
447
|
+
"recommendedSkills": {},
|
|
448
|
+
"recommendedPrayers": [],
|
|
449
|
+
"questRequirements": [],
|
|
450
|
+
"rewards": {
|
|
451
|
+
"experience": {
|
|
452
|
+
"Smithing": 12725
|
|
453
|
+
},
|
|
454
|
+
"items": []
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"id": 15,
|
|
459
|
+
"name": "Goblin Diplomacy",
|
|
460
|
+
"difficulty": "Novice",
|
|
461
|
+
"skillRequirements": {},
|
|
462
|
+
"status": "Not Started",
|
|
463
|
+
"miniquest": false,
|
|
464
|
+
"shortName": "Goblin Diplomacy",
|
|
465
|
+
"url": "https://oldschool.runescape.wiki/w/Goblin_Diplomacy",
|
|
466
|
+
"series": "",
|
|
467
|
+
"members": false,
|
|
468
|
+
"questPoints": 5,
|
|
469
|
+
"length": "Very Short",
|
|
470
|
+
"age": "",
|
|
471
|
+
"startLocation": "Goblin Village",
|
|
472
|
+
"difficultyLevel": "1",
|
|
473
|
+
"officialDifficulty": "Novice",
|
|
474
|
+
"officialLength": "Very Short",
|
|
475
|
+
"officialAge": "",
|
|
476
|
+
"itemRequirements": [
|
|
477
|
+
"Goblin mail (3)",
|
|
478
|
+
"Orange dye",
|
|
479
|
+
"Blue dye"
|
|
480
|
+
],
|
|
481
|
+
"recommendedItems": [],
|
|
482
|
+
"recommendedSkills": {},
|
|
483
|
+
"recommendedPrayers": [],
|
|
484
|
+
"questRequirements": [],
|
|
485
|
+
"rewards": {
|
|
486
|
+
"experience": {},
|
|
487
|
+
"items": [
|
|
488
|
+
"Gold bar"
|
|
489
|
+
]
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"id": 16,
|
|
494
|
+
"name": "Pirate's Treasure",
|
|
495
|
+
"difficulty": "Novice",
|
|
496
|
+
"skillRequirements": {},
|
|
497
|
+
"status": "Not Started",
|
|
498
|
+
"miniquest": false,
|
|
499
|
+
"shortName": "Pirate's Treasure",
|
|
500
|
+
"url": "https://oldschool.runescape.wiki/w/Pirate's_Treasure",
|
|
501
|
+
"series": "",
|
|
502
|
+
"members": false,
|
|
503
|
+
"questPoints": 2,
|
|
504
|
+
"length": "Very Short",
|
|
505
|
+
"age": "",
|
|
506
|
+
"startLocation": "Port Sarim",
|
|
507
|
+
"difficultyLevel": "1",
|
|
508
|
+
"officialDifficulty": "Novice",
|
|
509
|
+
"officialLength": "Very Short",
|
|
510
|
+
"officialAge": "",
|
|
511
|
+
"itemRequirements": [
|
|
512
|
+
"White apron",
|
|
513
|
+
"Spade"
|
|
514
|
+
],
|
|
515
|
+
"recommendedItems": [
|
|
516
|
+
"Coins"
|
|
517
|
+
],
|
|
518
|
+
"recommendedSkills": {},
|
|
519
|
+
"recommendedPrayers": [],
|
|
520
|
+
"questRequirements": [],
|
|
521
|
+
"rewards": {
|
|
522
|
+
"experience": {},
|
|
523
|
+
"items": [
|
|
524
|
+
"One-Eyed Hector's treasure chest"
|
|
525
|
+
]
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"id": 17,
|
|
530
|
+
"name": "Dragon Slayer I",
|
|
531
|
+
"difficulty": "Experienced",
|
|
532
|
+
"skillRequirements": {
|
|
533
|
+
"Quest Points": {
|
|
534
|
+
"level": 32,
|
|
535
|
+
"isBoostable": false
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
"status": "Not Started",
|
|
539
|
+
"miniquest": false,
|
|
540
|
+
"shortName": "Dragon Slayer I",
|
|
541
|
+
"url": "https://oldschool.runescape.wiki/w/Dragon_Slayer_I",
|
|
542
|
+
"series": "Dragonkin, #1",
|
|
543
|
+
"members": false,
|
|
544
|
+
"questPoints": 2,
|
|
545
|
+
"length": "Medium",
|
|
546
|
+
"age": "",
|
|
547
|
+
"startLocation": "Champions' Guild",
|
|
548
|
+
"difficultyLevel": "3",
|
|
549
|
+
"officialDifficulty": "Experienced",
|
|
550
|
+
"officialLength": "Medium",
|
|
551
|
+
"officialAge": "",
|
|
552
|
+
"itemRequirements": [
|
|
553
|
+
"Anti-dragon shield",
|
|
554
|
+
"Map pieces (3)",
|
|
555
|
+
"Crandor map"
|
|
556
|
+
],
|
|
557
|
+
"recommendedItems": [
|
|
558
|
+
"Food",
|
|
559
|
+
"Potions",
|
|
560
|
+
"Teleportation methods"
|
|
561
|
+
],
|
|
562
|
+
"recommendedSkills": {
|
|
563
|
+
"Attack": 40,
|
|
564
|
+
"Strength": 40,
|
|
565
|
+
"Defence": 40,
|
|
566
|
+
"Magic": 33,
|
|
567
|
+
"Prayer": 37
|
|
568
|
+
},
|
|
569
|
+
"recommendedPrayers": [
|
|
570
|
+
"Protect from Magic"
|
|
571
|
+
],
|
|
572
|
+
"questRequirements": [],
|
|
573
|
+
"rewards": {
|
|
574
|
+
"experience": {
|
|
575
|
+
"Strength": 18650,
|
|
576
|
+
"Defence": 18650
|
|
577
|
+
},
|
|
578
|
+
"items": [
|
|
579
|
+
"Ability to wear Rune platebody and Green dragonhide body"
|
|
580
|
+
]
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"id": 51,
|
|
585
|
+
"name": "Rune Mysteries",
|
|
586
|
+
"difficulty": "Novice",
|
|
587
|
+
"skillRequirements": {},
|
|
588
|
+
"status": "Not Started",
|
|
589
|
+
"miniquest": false,
|
|
590
|
+
"shortName": "Rune Mysteries",
|
|
591
|
+
"url": "https://oldschool.runescape.wiki/w/Rune_Mysteries",
|
|
592
|
+
"series": "Order of Wizards, #1",
|
|
593
|
+
"members": false,
|
|
594
|
+
"questPoints": 1,
|
|
595
|
+
"length": "Short",
|
|
596
|
+
"age": "",
|
|
597
|
+
"startLocation": "Lumbridge Castle",
|
|
598
|
+
"difficultyLevel": "1",
|
|
599
|
+
"officialDifficulty": "Novice",
|
|
600
|
+
"officialLength": "Short",
|
|
601
|
+
"officialAge": "",
|
|
602
|
+
"itemRequirements": [],
|
|
603
|
+
"recommendedItems": [],
|
|
604
|
+
"recommendedSkills": {},
|
|
605
|
+
"recommendedPrayers": [],
|
|
606
|
+
"questRequirements": [],
|
|
607
|
+
"rewards": {
|
|
608
|
+
"experience": {},
|
|
609
|
+
"areas": [
|
|
610
|
+
"Access to the Rune essence mine"
|
|
611
|
+
]
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"id": 129,
|
|
616
|
+
"name": "Misthalin Mystery",
|
|
617
|
+
"difficulty": "Novice",
|
|
618
|
+
"skillRequirements": {},
|
|
619
|
+
"status": "Not Started",
|
|
620
|
+
"miniquest": false,
|
|
621
|
+
"shortName": "Misthalin Mystery",
|
|
622
|
+
"url": "https://oldschool.runescape.wiki/w/Misthalin_Mystery",
|
|
623
|
+
"series": "",
|
|
624
|
+
"members": false,
|
|
625
|
+
"questPoints": 1,
|
|
626
|
+
"length": "Short",
|
|
627
|
+
"age": "",
|
|
628
|
+
"startLocation": "Lumbridge Swamp",
|
|
629
|
+
"difficultyLevel": "1",
|
|
630
|
+
"officialDifficulty": "Novice",
|
|
631
|
+
"officialLength": "Short",
|
|
632
|
+
"officialAge": "",
|
|
633
|
+
"itemRequirements": [],
|
|
634
|
+
"recommendedItems": [],
|
|
635
|
+
"recommendedSkills": {},
|
|
636
|
+
"recommendedPrayers": [],
|
|
637
|
+
"questRequirements": [],
|
|
638
|
+
"rewards": {
|
|
639
|
+
"experience": {},
|
|
640
|
+
"items": [
|
|
641
|
+
"Uncut sapphire",
|
|
642
|
+
"Uncut emerald",
|
|
643
|
+
"Uncut ruby"
|
|
644
|
+
]
|
|
645
|
+
}
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"id": 135,
|
|
649
|
+
"name": "The Corsair Curse",
|
|
650
|
+
"difficulty": "Intermediate",
|
|
651
|
+
"skillRequirements": {},
|
|
652
|
+
"status": "Not Started",
|
|
653
|
+
"miniquest": false,
|
|
654
|
+
"shortName": "The Corsair Curse",
|
|
655
|
+
"url": "https://oldschool.runescape.wiki/w/The_Corsair_Curse",
|
|
656
|
+
"series": "",
|
|
657
|
+
"members": false,
|
|
658
|
+
"questPoints": 2,
|
|
659
|
+
"length": "Short",
|
|
660
|
+
"age": "",
|
|
661
|
+
"startLocation": "North of Port Sarim",
|
|
662
|
+
"difficultyLevel": "2",
|
|
663
|
+
"officialDifficulty": "Intermediate",
|
|
664
|
+
"officialLength": "Short",
|
|
665
|
+
"officialAge": "",
|
|
666
|
+
"itemRequirements": [
|
|
667
|
+
"Spade",
|
|
668
|
+
"Tinderbox"
|
|
669
|
+
],
|
|
670
|
+
"recommendedItems": [
|
|
671
|
+
"Stamina potion",
|
|
672
|
+
"Weapon",
|
|
673
|
+
"Food"
|
|
674
|
+
],
|
|
675
|
+
"recommendedSkills": {},
|
|
676
|
+
"recommendedPrayers": [],
|
|
677
|
+
"questRequirements": [],
|
|
678
|
+
"rewards": {
|
|
679
|
+
"experience": {},
|
|
680
|
+
"items": []
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"id": 142,
|
|
685
|
+
"name": "X Marks the Spot",
|
|
686
|
+
"difficulty": "Novice",
|
|
687
|
+
"skillRequirements": {},
|
|
688
|
+
"status": "Not Started",
|
|
689
|
+
"miniquest": false,
|
|
690
|
+
"shortName": "X Marks the Spot",
|
|
691
|
+
"url": "https://oldschool.runescape.wiki/w/X_Marks_the_Spot",
|
|
692
|
+
"series": "Great Kourend, #1",
|
|
693
|
+
"members": false,
|
|
694
|
+
"questPoints": 1,
|
|
695
|
+
"length": "Very Short",
|
|
696
|
+
"age": "",
|
|
697
|
+
"startLocation": "Lumbridge",
|
|
698
|
+
"difficultyLevel": "1",
|
|
699
|
+
"officialDifficulty": "Novice",
|
|
700
|
+
"officialLength": "Very Short",
|
|
701
|
+
"officialAge": "",
|
|
702
|
+
"itemRequirements": [],
|
|
703
|
+
"recommendedItems": [],
|
|
704
|
+
"recommendedSkills": {},
|
|
705
|
+
"recommendedPrayers": [],
|
|
706
|
+
"questRequirements": [],
|
|
707
|
+
"rewards": {
|
|
708
|
+
"experience": {},
|
|
709
|
+
"items": [
|
|
710
|
+
"1 Quest point",
|
|
711
|
+
"200 coins",
|
|
712
|
+
"Antique lamp (300 experience)"
|
|
713
|
+
]
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"id": 148,
|
|
718
|
+
"name": "Below Ice Mountain",
|
|
719
|
+
"difficulty": "Novice",
|
|
720
|
+
"skillRequirements": {
|
|
721
|
+
"Mining": {
|
|
722
|
+
"level": 10,
|
|
723
|
+
"isBoostable": false
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
"status": "Not Started",
|
|
727
|
+
"miniquest": false,
|
|
728
|
+
"shortName": "Below Ice Mountain",
|
|
729
|
+
"url": "https://oldschool.runescape.wiki/w/Below_Ice_Mountain",
|
|
730
|
+
"series": "",
|
|
731
|
+
"members": false,
|
|
732
|
+
"questPoints": 1,
|
|
733
|
+
"length": "Short",
|
|
734
|
+
"age": "",
|
|
735
|
+
"startLocation": "West of Edgeville",
|
|
736
|
+
"difficultyLevel": "1",
|
|
737
|
+
"officialDifficulty": "Novice",
|
|
738
|
+
"officialLength": "Short",
|
|
739
|
+
"officialAge": "",
|
|
740
|
+
"itemRequirements": [],
|
|
741
|
+
"recommendedItems": [],
|
|
742
|
+
"recommendedSkills": {},
|
|
743
|
+
"recommendedPrayers": [],
|
|
744
|
+
"questRequirements": [],
|
|
745
|
+
"rewards": {
|
|
746
|
+
"experience": {
|
|
747
|
+
"Mining": 1500
|
|
748
|
+
},
|
|
749
|
+
"areas": [
|
|
750
|
+
"Access to the Ruins of Camdozaal"
|
|
751
|
+
]
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
]
|