osrs-tools 0.2.0 → 0.2.2

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.
Files changed (92) hide show
  1. package/dist/index.d.ts +8 -0
  2. package/dist/index.js +12 -0
  3. package/dist/jest.config.dev.js +7 -0
  4. package/dist/model/Requirement.d.ts +65 -0
  5. package/dist/model/Requirement.js +130 -0
  6. package/dist/model/account/OsrsAccount.d.ts +31 -0
  7. package/dist/model/account/OsrsAccount.js +64 -0
  8. package/dist/model/quest/Quest.d.ts +41 -0
  9. package/dist/model/quest/Quest.js +2 -0
  10. package/dist/model/quest/QuestTool.d.ts +51 -0
  11. package/{src/model/quest/QuestTool.ts → dist/model/quest/QuestTool.js} +78 -96
  12. package/dist/model/slayer/Assignment.d.ts +17 -0
  13. package/dist/model/slayer/Assignment.js +28 -0
  14. package/dist/model/slayer/SlayerMaster.d.ts +67 -0
  15. package/dist/model/slayer/SlayerMaster.js +112 -0
  16. package/dist/model/slayer/SlayerReward.d.ts +33 -0
  17. package/dist/model/slayer/SlayerReward.js +30 -0
  18. package/dist/model/slayer/Task.d.ts +85 -0
  19. package/dist/model/slayer/Task.js +117 -0
  20. package/dist/resources/slayer/Masters.d.ts +10 -0
  21. package/dist/resources/slayer/Masters.js +100 -0
  22. package/dist/resources/slayer/SlayerData.d.ts +13 -0
  23. package/dist/resources/slayer/SlayerData.js +42 -0
  24. package/dist/resources/slayer/SlayerExtends.d.ts +23 -0
  25. package/dist/resources/slayer/SlayerExtends.js +184 -0
  26. package/dist/resources/slayer/SlayerUnlock.d.ts +7 -0
  27. package/dist/resources/slayer/SlayerUnlock.js +67 -0
  28. package/dist/resources/slayer/slayerBuys.d.ts +3 -0
  29. package/dist/resources/slayer/slayerBuys.js +34 -0
  30. package/dist/resources/slayer/tasks/ChaelderTasks.d.ts +3 -0
  31. package/dist/resources/slayer/tasks/ChaelderTasks.js +78 -0
  32. package/dist/resources/slayer/tasks/DuradelTasks.d.ts +2 -0
  33. package/dist/resources/slayer/tasks/DuradelTasks.js +18 -0
  34. package/{src/resources/slayer/tasks/KonarTasks.ts → dist/resources/slayer/tasks/KonarTasks.d.ts} +3 -6
  35. package/dist/resources/slayer/tasks/KonarTasks.js +5 -0
  36. package/dist/resources/slayer/tasks/MazchnaTasks.d.ts +3 -0
  37. package/dist/resources/slayer/tasks/MazchnaTasks.js +4 -0
  38. package/dist/resources/slayer/tasks/NieveTasks.d.ts +3 -0
  39. package/dist/resources/slayer/tasks/NieveTasks.js +78 -0
  40. package/dist/resources/slayer/tasks/ReadTasks.d.ts +1 -0
  41. package/dist/resources/slayer/tasks/ReadTasks.js +63 -0
  42. package/dist/resources/slayer/tasks/SpriaTasks.d.ts +2 -0
  43. package/dist/resources/slayer/tasks/SpriaTasks.js +117 -0
  44. package/dist/resources/slayer/tasks/Tureal.d.ts +3 -0
  45. package/dist/resources/slayer/tasks/Tureal.js +125 -0
  46. package/dist/resources/slayer/tasks/VannakaTasks.d.ts +3 -0
  47. package/dist/resources/slayer/tasks/VannakaTasks.js +78 -0
  48. package/package.json +22 -25
  49. package/src/index.ts +0 -11
  50. package/src/model/Requirement.ts +0 -173
  51. package/src/model/account/OsrsAccount.ts +0 -82
  52. package/src/model/quest/Quest.ts +0 -44
  53. package/src/model/slayer/Assignment.ts +0 -40
  54. package/src/model/slayer/SlayerMaster.ts +0 -137
  55. package/src/model/slayer/SlayerReward.ts +0 -39
  56. package/src/model/slayer/Task.ts +0 -168
  57. package/src/resources/QuestData.json +0 -754
  58. package/src/resources/quest/diaries.json +0 -1171
  59. package/src/resources/quest/diariesArray.json +0 -0
  60. package/src/resources/quest/exp.json +0 -1333
  61. package/src/resources/quest/questData.js +0 -5628
  62. package/src/resources/quest/questData.json +0 -5790
  63. package/src/resources/quest/questDataArray.js +0 -5489
  64. package/src/resources/quest/questDataArray.json +0 -5489
  65. package/src/resources/quest/subquestArray.js +0 -58
  66. package/src/resources/quest/subquestArray.json +0 -58
  67. package/src/resources/quest/testObj.json +0 -5682
  68. package/src/resources/quest/testarray.json +0 -5589
  69. package/src/resources/quests/CooksAssistant.json +0 -34
  70. package/src/resources/slayer/Masters.ts +0 -180
  71. package/src/resources/slayer/SlayerData.ts +0 -45
  72. package/src/resources/slayer/SlayerExtends.ts +0 -218
  73. package/src/resources/slayer/SlayerUnlock.ts +0 -194
  74. package/src/resources/slayer/slayer.json +0 -3581
  75. package/src/resources/slayer/slayerBuys.ts +0 -38
  76. package/src/resources/slayer/slayerData.json +0 -4431
  77. package/src/resources/slayer/tasks/ChaelderTasks.ts +0 -235
  78. package/src/resources/slayer/tasks/DuradelTasks.ts +0 -75
  79. package/src/resources/slayer/tasks/MazchnaTasks.ts +0 -5
  80. package/src/resources/slayer/tasks/NieveTasks.ts +0 -235
  81. package/src/resources/slayer/tasks/ReadTasks.ts +0 -55
  82. package/src/resources/slayer/tasks/SpriaTasks.ts +0 -344
  83. package/src/resources/slayer/tasks/Tureal.ts +0 -436
  84. package/src/resources/slayer/tasks/VannakaTasks.ts +0 -236
  85. package/src/resources/slayer/tasks/json/Chaeldar.json +0 -348
  86. package/src/resources/slayer/tasks/json/Duradel.json +0 -541
  87. package/src/resources/slayer/tasks/json/Krystilia.json +0 -2
  88. package/src/resources/slayer/tasks/json/Mazchna.json +0 -379
  89. package/src/resources/slayer/tasks/json/Neive.json +0 -320
  90. package/src/resources/slayer/tasks/json/Spria.json +0 -345
  91. package/src/resources/slayer/tasks/json/Tureal.json +0 -341
  92. package/src/resources/slayer/tasks/json/Vannaka.json +0 -547
@@ -1,1171 +0,0 @@
1
- {
2
- "Ardougne Diary": {
3
- "itemReward": "Ardougne cloak",
4
- "rewards": [],
5
- "name": "Ardougne Diary",
6
- "easy": {
7
- "itemReward": "Ardougne cloak 1",
8
- "tasks": [
9
- {
10
- "description": "Have Wizard Cromperty teleport you to the Rune essence mine.",
11
- "requirements": {
12
- "quests": [
13
- "Rune Mysteries"
14
- ],
15
- "skills": []
16
- },
17
- "other": {
18
- "itemsNeeded": "None. However, you must right click on him and select \"Teleport\". Talking to him doesn't count towards the Achievement Diary."
19
- }
20
- },
21
- {
22
- "description": "Steal a cake from the East Ardougne market stalls.",
23
- "requirements": {
24
- "quests": [],
25
- "skills": [
26
- {
27
- "skill": "thieving",
28
- "level": 5,
29
- "boostable": true,
30
- "optional": false
31
- }
32
- ]
33
- },
34
- "other": {
35
- "itemsNeeded": "None."
36
- }
37
- },
38
- {
39
- "description": "Sell silk to the Silk trader in East Ardougne for 60 coins each.",
40
- "requirements": {
41
- "quests": [],
42
- "skills": []
43
- },
44
- "other": {
45
- "itemsNeeded": "Silk (When speaking to the silk merchant, first offer for 120 coins each—then, select 60 coins each). Note that if you steal silk from the silk stall, the silk trader will not talk to you for 30 minutes to 1 hour (even if you hop worlds)."
46
- }
47
- },
48
- {
49
- "description": "Use the altar in East Ardougne's church.",
50
- "requirements": {
51
- "quests": [],
52
- "skills": []
53
- },
54
- "other": {
55
- "itemsNeeded": "None. However, if you pray at the altar with full prayer points, you will not complete the task."
56
- }
57
- },
58
- {
59
- "description": "Go out fishing on the Fishing Trawler.",
60
- "requirements": {
61
- "quests": [],
62
- "skills": []
63
- },
64
- "other": {
65
- "itemsNeeded": "Fishing Trawler—only need to start the minigame"
66
- }
67
- },
68
- {
69
- "description": "Enter the Combat Training Camp north of West Ardougne.",
70
- "requirements": {
71
- "quests": [
72
- "Biohazard"
73
- ],
74
- "skills": []
75
- },
76
- "other": {
77
- "itemsNeeded": "None."
78
- }
79
- },
80
- {
81
- "description": "Have Tindel Marchant identify a rusty sword for you.",
82
- "requirements": {
83
- "quests": [],
84
- "skills": [
85
- {
86
- "skill": "thieving",
87
- "level": 15,
88
- "boostable": true,
89
- "optional": true
90
- }
91
- ]
92
- },
93
- "other": {
94
- "itemsNeeded": "Rusty sword(s), 100 coins. If Tindel does not identify the sword as anything, it will not complete the task, so it might be worth bringing multiple."
95
- }
96
- },
97
- {
98
- "description": "Use the Ardougne lever to teleport to the Wilderness.",
99
- "requirements": {
100
- "quests": [],
101
- "skills": []
102
- },
103
- "other": {
104
- "itemsNeeded": "Beware, this will teleport you to Level 51 Wilderness, where other players may attack you! The closest bank is at the Mage Arena just west of the lever, or you can just pull the lever again to get back to Ardougne."
105
- }
106
- },
107
- {
108
- "description": "View Aleck's Hunter Emporium shop in Yanille.",
109
- "requirements": {
110
- "quests": [],
111
- "skills": []
112
- },
113
- "other": {
114
- "itemsNeeded": "None."
115
- }
116
- },
117
- {
118
- "description": "Check what pets you have insured with Probita in East Ardougne.",
119
- "requirements": {
120
- "quests": [],
121
- "skills": []
122
- },
123
- "other": {
124
- "itemsNeeded": "Players must right click on her and select \"Check\" in order to complete this task. (Checking pets through the chat menu does not count towards the Achievement Diary.)"
125
- }
126
- }
127
- ],
128
- "rewards": {
129
- "description": [
130
- {
131
- "main": "Ardougne cloak 1",
132
- "other": [
133
- "Unlimited teleports to the Ardougne Monastery"
134
- ]
135
- },
136
- {
137
- "main": "1 Antique lamp worth 2,500 experience in any skill above 30",
138
- "other": []
139
- },
140
- {
141
- "main": "Double death runes (200) when trading in cats to civilians",
142
- "other": []
143
- },
144
- {
145
- "main": "10% increased chance to successfully steal from stalls in Ardougne",
146
- "other": []
147
- },
148
- {
149
- "main": "Jubster and Frogeel drops will be noted at the Tower of Life",
150
- "other": []
151
- }
152
- ],
153
- "lamps": [
154
- {
155
- "amount": 1,
156
- "experience": 2500,
157
- "levelToUse": 30
158
- }
159
- ]
160
- },
161
- "itemsRequired": [
162
- "Around 100 coins",
163
- "Silk (Note that if you steal silk from the silk stall, the silk trader will not talk to you for 30 minutes to 1 hour, and cannot be bypassed by hopping worlds.)",
164
- "Rusty sword (More may be needed; it may be a good idea to bring a few extras. These are found by pick-pocketing H.A.M Members, or by digging in Level 1 sites at the Digsite if the quest has been started.)",
165
- "A knife or slashing weapon (To be safe, not needed, but you have to use the lever to the Wilderness.)"
166
- ],
167
- "questsRequired": [
168
- "Biohazard",
169
- "Rune Mysteries"
170
- ],
171
- "skillsRequired": [
172
- {
173
- "skill": "thieving",
174
- "level": 5,
175
- "boostable": true
176
- }
177
- ]
178
- },
179
- "medium": {
180
- "itemReward": "Ardougne cloak 2",
181
- "rewards": {
182
- "description": [
183
- {
184
- "main": "Ardougne cloak 2",
185
- "other": [
186
- "Three daily teleports to Ardougne farm patch"
187
- ]
188
- },
189
- {
190
- "main": "1 Antique lamp worth 7,500 experience in any skill of level 40 or higher",
191
- "other": []
192
- },
193
- {
194
- "main": "100 free noted pure essence every day from Wizard Cromperty",
195
- "other": []
196
- },
197
- {
198
- "main": "Unicow, Newtroost, and Spidine drops will be noted at the Tower of Life",
199
- "other": []
200
- },
201
- {
202
- "main": "10% increased chance to pickpocket in Ardougne (even if the cloak is not equipped or in inventory[1])",
203
- "other": []
204
- },
205
- {
206
- "main": "Ability to toggle the Ring of life teleport to Ardougne",
207
- "other": []
208
- },
209
- {
210
- "main": "Receive additional runes when crafting essence at the Ourania Altar",
211
- "other": []
212
- }
213
- ],
214
- "lamps": [
215
- {
216
- "amount": 1,
217
- "experience": 7500,
218
- "levelToUse": 40
219
- }
220
- ]
221
- },
222
- "tasks": [
223
- {
224
- "description": "Enter the unicorn pen in Ardougne Zoo using Fairy rings.",
225
- "requirements": {
226
- "quests": [
227
- "Fairytale II - Cure a Queen"
228
- ],
229
- "skills": []
230
- },
231
- "other": {
232
- "itemsNeeded": "Dramen or Lunar staff (code: bis)"
233
- }
234
- },
235
- {
236
- "description": "Grapple over Yanille's south wall and jump off.",
237
- "requirements": {
238
- "quests": [],
239
- "skills": [
240
- {
241
- "skill": "agility",
242
- "level": 39,
243
- "boostable": false
244
- },
245
- {
246
- "skill": "ranged",
247
- "level": 21,
248
- "boostable": false
249
- },
250
- {
251
- "skill": "strength",
252
- "level": 38,
253
- "boostable": false
254
- }
255
- ]
256
- },
257
- "other": {
258
- "itemsNeeded": "Mith grapple and any crossbow (Ironmen need level 59 in Fletching and level 59 in Smithing to make the mith grapple from scratch; or kill one of the NPCs that drop them.)"
259
- }
260
- },
261
- {
262
- "description": "Harvest some strawberries from the Ardougne farming patch.",
263
- "requirements": {
264
- "quests": [],
265
- "skills": [
266
- {
267
- "skill": "farming",
268
- "level": 31,
269
- "boostable": false
270
- }
271
- ]
272
- },
273
- "other": {
274
- "itemsNeeded": "3 strawberry seeds, farming equipment (rake, spade, seed dibber, and watering can), 1 basket of apples (recommended)"
275
- }
276
- },
277
- {
278
- "description": "Cast the Ardougne Teleport spell.",
279
- "requirements": {
280
- "quests": [
281
- "Plague City"
282
- ],
283
- "skills": [
284
- {
285
- "skill": "magic",
286
- "level": 51,
287
- "boostable": false
288
- }
289
- ]
290
- },
291
- "other": {
292
- "itemsNeeded": "2 Water runes and 2 Law runes."
293
- }
294
- },
295
- {
296
- "description": "Travel to Castle Wars by Hot Air Balloon.",
297
- "requirements": {
298
- "quests": [
299
- "Enlightened Journey"
300
- ],
301
- "skills": [
302
- {
303
- "skill": "firemaking",
304
- "level": 50,
305
- "boostable": false
306
- }
307
- ]
308
- },
309
- "other": {
310
- "itemsNeeded": "Yew log (11 yew logs and 1 normal log to return back if balloon route hasn't been unlocked yet—you will have to unlock the route and then use it again afterwards. Unlocking the route costs 10 yew logs)"
311
- }
312
- },
313
- {
314
- "description": "Claim buckets of sand from Bert in Yanille. (Ultimate Ironman mode alternative) Fill a bucket with sand using Bert's sand pit.",
315
- "requirements": {
316
- "quests": [
317
- "The Hand in the Sand"
318
- ],
319
- "skills": [
320
- {
321
- "skill": "crafting",
322
- "level": 49,
323
- "boostable": false
324
- }
325
- ]
326
- },
327
- "other": {
328
- "itemsNeeded": "None."
329
- }
330
- },
331
- {
332
- "description": "Catch any fish on the Fishing Platform.",
333
- "requirements": {
334
- "quests": [
335
- "Sea Slug"
336
- ],
337
- "skills": []
338
- },
339
- "other": {
340
- "itemsNeeded": "Fishing rod and bait or small fishing net."
341
- }
342
- },
343
- {
344
- "description": "Pickpocket the master farmer north of East Ardougne.",
345
- "requirements": {
346
- "quests": [],
347
- "skills": [
348
- {
349
- "skill": "thieving",
350
- "level": 38,
351
- "boostable": false
352
- }
353
- ]
354
- },
355
- "other": {
356
- "itemsNeeded": "None."
357
- }
358
- },
359
- {
360
- "description": "Collect some cave nightshade from the Skavid caves.",
361
- "requirements": {
362
- "quests": [
363
- "Watchtower"
364
- ],
365
- "skills": []
366
- },
367
- "other": {
368
- "itemsNeeded": "Any light source, Skavid map (The northernmost cave south of the ogre island west of Yanille spawns one every 55 seconds.)."
369
- }
370
- },
371
- {
372
- "description": "Kill a swordchick in the Tower of Life.",
373
- "requirements": {
374
- "quests": [
375
- "Tower of Life"
376
- ],
377
- "skills": []
378
- },
379
- "other": {
380
- "itemsNeeded": "A raw chicken and raw swordfish (To activate the Symbol of life- go to the basement in the Tower of Life. Go west from the entrance, then south, then to the room on the east wall (there are multiple 'Symbols of life'.)"
381
- }
382
- },
383
- {
384
- "description": "Equip an Iban's upgraded staff or upgrade an Iban's staff.",
385
- "requirements": {
386
- "quests": [
387
- "Underground Pass"
388
- ],
389
- "skills": [
390
- {
391
- "skill": "magic",
392
- "level": 50,
393
- "boostable": false
394
- },
395
- {
396
- "skill": "attack",
397
- "level": 50,
398
- "boostable": false
399
- }
400
- ]
401
- },
402
- "other": {
403
- "itemsNeeded": "200,000 coins and Iban's staff or Iban's upgraded staff. 50 Attack is not needed if Iban's staff has not been upgraded yet, simply upgrade the staff to complete the task. Iban's staff (u) is obtained by bringing Iban's staff to the dark mage, located in West Ardougne at the last house before the entrance of the Underground Pass dungeon"
404
- }
405
- },
406
- {
407
- "description": "Visit the island east of the Necromancer Tower.",
408
- "requirements": {
409
- "quests": [
410
- "Fairytale II - Cure a Queen"
411
- ],
412
- "skills": []
413
- },
414
- "other": {
415
- "itemsNeeded": "Dramen or Lunar staff (code: air)"
416
- }
417
- }
418
- ],
419
- "itemsRequired": [
420
- "Dramen or Lunar staff",
421
- "Mith grapple (Note that it must have the rope added to it.)",
422
- "Any crossbow",
423
- "2 water runes",
424
- "2 law runes",
425
- "3 strawberry seeds, 1 basket of apples (recommended) and tools for farming (e.g. seed dibber, rake, spade)",
426
- "1 log and 11 yew logs (if balloon route hasn't been unlocked yet)",
427
- "Fishing rod and Bait or small fishing net",
428
- "Any light source",
429
- "Skavid map",
430
- "1 raw chicken",
431
- "1 raw swordfish",
432
- "1 yew log",
433
- "Iban's upgraded staff (or 200,000 coins and Iban's staff)"
434
- ],
435
- "questsRequired": [
436
- "Fairytale II - Cure a Queen",
437
- "Enlightened Journey",
438
- "The Hand in the Sand",
439
- "Watchtower",
440
- "Sea Slug ",
441
- "Tower of Life",
442
- "Underground Pass"
443
- ],
444
- "skillsRequired": [
445
- {
446
- "skill": "agility",
447
- "level": 39,
448
- "boostable": false
449
- },
450
- {
451
- "skill": "attack",
452
- "level": 50,
453
- "boostable": false
454
- },
455
- {
456
- "skill": "construction",
457
- "level": 10,
458
- "boostable": false
459
- },
460
- {
461
- "skill": "crafting",
462
- "level": 49,
463
- "boostable": false
464
- },
465
- {
466
- "skill": "farming",
467
- "level": 31,
468
- "boostable": false
469
- },
470
- {
471
- "skill": "firemaking",
472
- "level": 50,
473
- "boostable": false
474
- },
475
- {
476
- "skill": "magic",
477
- "level": 51,
478
- "boostable": false
479
- },
480
- {
481
- "skill": "ranged",
482
- "level": 25,
483
- "boostable": false
484
- },
485
- {
486
- "skill": "strength",
487
- "level": 38,
488
- "boostable": false
489
- },
490
- {
491
- "skill": "thieving",
492
- "level": 38,
493
- "boostable": false
494
- },
495
- {
496
- "skill": "woodcutting",
497
- "level": 36,
498
- "boostable": false
499
- },
500
- {
501
- "skill": "quest",
502
- "level": 20,
503
- "boostable": false
504
- },
505
- {
506
- "skill": "fletching",
507
- "level": 20,
508
- "boostable": false,
509
- "ironman": true
510
- },
511
- {
512
- "skill": "smithing",
513
- "level": 20,
514
- "boostable": false,
515
- "ironman": true
516
- }
517
- ]
518
- },
519
- "hard": {
520
- "itemReward": "Ardougne cloak 3",
521
- "rewards": {
522
- "description": [
523
- {
524
- "main": "Ardougne cloak 3",
525
- "other": [
526
- "Five daily teleports to Ardougne farm patch"
527
- ]
528
- },
529
- {
530
- "main": "1 Antique lamp worth 15,000 experience in any skill above 50",
531
- "other": []
532
- },
533
- {
534
- "main": "150 free noted pure essence every day from Wizard Cromperty",
535
- "other": []
536
- },
537
- {
538
- "main": "Ability to toggle Watchtower Teleport to the centre of Yanille",
539
- "other": []
540
- },
541
- {
542
- "main": "10% increased chance of succeeding when pickpocketing around Gielinor (even if the cloak is not equipped or in inventory",
543
- "other": []
544
- }
545
- ],
546
- "lamps": [
547
- {
548
- "amount": 1,
549
- "experience": 15000,
550
- "levelToUse": 50
551
- }
552
- ]
553
- },
554
- "tasks": [
555
- {
556
- "description": "Recharge some jewellery at the Totem pole in the Legends' Guild.",
557
- "requirements": {
558
- "quests": [
559
- "Legends' Quest"
560
- ],
561
- "skills": []
562
- },
563
- "other": {
564
- "itemsNeeded": "Either an uncharged skills necklace or combat bracelet(charged works just needs to have less than max charges)"
565
- }
566
- },
567
- {
568
- "description": "Enter the Magic Guild.",
569
- "requirements": {
570
- "quests": [],
571
- "skills": [
572
- {
573
- "skill": "magic",
574
- "level": 66,
575
- "boostable": false
576
- }
577
- ]
578
- },
579
- "other": {
580
- "itemsNeeded": "None"
581
- }
582
- },
583
- {
584
- "description": "Attempt to steal from a chest in Ardougne Castle.",
585
- "requirements": {
586
- "quests": [],
587
- "skills": [
588
- {
589
- "skill": "thieving",
590
- "level": 72,
591
- "boostable": true
592
- }
593
- ]
594
- },
595
- "other": {
596
- "itemsNeeded": "None"
597
- }
598
- },
599
- {
600
- "description": "Have a zookeeper put you in Ardougne Zoo's monkey cage. (Wear a Karamjan monkey greegree—then, talk to the Monkey Minder.)",
601
- "requirements": {
602
- "quests": [
603
- "Monkey Madness I"
604
- ],
605
- "skills": []
606
- },
607
- "other": {
608
- "itemsNeeded": "Monkey greegree (Karamja). Others will not work. You may reobtain this greegree from Zooknock after the completion of Monkey Madness 2."
609
- }
610
- },
611
- {
612
- "description": "Teleport to the Watchtower.",
613
- "requirements": {
614
- "quests": [
615
- "Watchtower"
616
- ],
617
- "skills": [
618
- {
619
- "skill": "magic",
620
- "level": 58,
621
- "boostable": false
622
- }
623
- ]
624
- },
625
- "other": {
626
- "itemsNeeded": "2 Earth runes and 2 Law runes"
627
- }
628
- },
629
- {
630
- "description": "Catch a Red Salamander.",
631
- "requirements": {
632
- "quests": [],
633
- "skills": [
634
- {
635
- "skill": "hunter",
636
- "level": 59,
637
- "boostable": false
638
- }
639
- ]
640
- },
641
- "other": {
642
- "itemsNeeded": "At least 1 rope and small fishing net"
643
- }
644
- },
645
- {
646
- "description": "Check the health of a palm tree near Tree Gnome Village (not in Gnome Stronghold).",
647
- "requirements": {
648
- "quests": [],
649
- "skills": [
650
- {
651
- "skill": "farming",
652
- "level": 68,
653
- "boostable": false
654
- }
655
- ]
656
- },
657
- "other": {
658
- "itemsNeeded": "1 palm tree seed (or 1 palm sapling); recommended: 15 papaya fruit"
659
- }
660
- },
661
- {
662
- "description": "Pick some poison ivy berries from the patch south of East Ardougne (Near the Ardougne Monastery).",
663
- "requirements": {
664
- "quests": [],
665
- "skills": [
666
- {
667
- "skill": "farming",
668
- "level": 70,
669
- "boostable": false
670
- }
671
- ]
672
- },
673
- "other": {
674
- "itemsNeeded": "1 poison ivy seed, seed dibber, rake"
675
- }
676
- },
677
- {
678
- "description": "Smith a Mithril platebody near Ardougne.",
679
- "requirements": {
680
- "quests": [],
681
- "skills": [
682
- {
683
- "skill": "smithing",
684
- "level": 68,
685
- "boostable": true
686
- }
687
- ]
688
- },
689
- "other": {
690
- "itemsNeeded": "5 mithril bars, hammer (works at Port Khazard, Yanille, or West Ardougne anvil)"
691
- }
692
- },
693
- {
694
- "description": "Enter your POH from Yanille.",
695
- "requirements": {
696
- "quests": [],
697
- "skills": [
698
- {
699
- "skill": "construction",
700
- "level": 50,
701
- "boostable": true
702
- }
703
- ]
704
- },
705
- "other": {
706
- "itemsNeeded": "25,000 coins"
707
- }
708
- },
709
- {
710
- "description": "Smith a Dragon sq shield in West Ardougne.",
711
- "requirements": {
712
- "quests": [],
713
- "skills": [
714
- {
715
- "skill": "smithing",
716
- "level": 60,
717
- "boostable": false
718
- }
719
- ]
720
- },
721
- "other": {
722
- "itemsNeeded": "Shield left half, shield right half, hammer(You need to complete the Legends' Quest to wear the shield, however, smithing it does not require completion. Ironmen will need to finish the quest to acquire the shield right half, as it is only sold in the guild.)"
723
- }
724
- },
725
- {
726
- "description": "Craft some death runes at the Death altar.",
727
- "requirements": {
728
- "quests": [
729
- "Mourning's End Part II"
730
- ],
731
- "skills": [
732
- {
733
- "skill": "runecraft",
734
- "level": 65,
735
- "boostable": true
736
- }
737
- ]
738
- },
739
- "other": {
740
- "itemsNeeded": "Pure essence, death talisman (or Runecraft cape/max cape or access to the Abyss), Mourner Gear (if using Mourner Tunnels, unless Song of the Elves has been completed) and Crystal Trinket (if entering through the Temple of Light)."
741
- }
742
- }
743
- ],
744
- "itemsRequired": [
745
- "An uncharged skills necklace or combat bracelet",
746
- "Karamjan monkey greegree",
747
- "2 earth runes",
748
- "2 law runes",
749
- "1 rope and small fishing net",
750
- "1 palm tree seed (or 1 palm sapling), 15 papaya fruit—recommended)",
751
- "1 poison ivy seed",
752
- "Hammer",
753
- "5 mithril bars",
754
- "25,000 coins (if house isn't in Yanille)",
755
- "Shield left half",
756
- "Shield right half",
757
- "Pure essence",
758
- "Death talisman, Runecraft cape or max cape (or access to the Abyss)"
759
- ],
760
- "questsRequired": [
761
- "Monkey Madness I",
762
- "Legends' Quest",
763
- "Mourning's End Part II",
764
- "Watchtower"
765
- ],
766
- "skillsRequired": [
767
- {
768
- "skill": "agility",
769
- "level": 56,
770
- "boostable": false
771
- },
772
- {
773
- "skill": "construction",
774
- "level": 50,
775
- "boostable": false
776
- },
777
- {
778
- "skill": "cooking",
779
- "level": 53,
780
- "boostable": false
781
- },
782
- {
783
- "skill": "crafting",
784
- "level": 50,
785
- "boostable": false
786
- },
787
- {
788
- "skill": "farming",
789
- "level": 70,
790
- "boostable": false
791
- },
792
- {
793
- "skill": "fishing",
794
- "level": 53,
795
- "boostable": false
796
- },
797
- {
798
- "skill": "fletching",
799
- "level": 5,
800
- "boostable": false
801
- },
802
- {
803
- "skill": "herblore",
804
- "level": 45,
805
- "boostable": true
806
- },
807
- {
808
- "skill": "hunter",
809
- "level": 59,
810
- "boostable": false
811
- },
812
- {
813
- "skill": "magic",
814
- "level": 66,
815
- "boostable": false
816
- },
817
- {
818
- "skill": "mining",
819
- "level": 52,
820
- "boostable": false
821
- },
822
- {
823
- "skill": "prayer",
824
- "level": 42,
825
- "boostable": false
826
- },
827
- {
828
- "skill": "ranged",
829
- "level": 60,
830
- "boostable": false
831
- },
832
- {
833
- "skill": "runecraft",
834
- "level": 65,
835
- "boostable": true
836
- },
837
- {
838
- "skill": "smithing",
839
- "level": 68,
840
- "boostable": true
841
- },
842
- {
843
- "skill": "strength",
844
- "level": 50,
845
- "boostable": false
846
- },
847
- {
848
- "skill": "thieving",
849
- "level": 72,
850
- "boostable": false
851
- },
852
- {
853
- "skill": "woodcutting",
854
- "level": 50,
855
- "boostable": false
856
- },
857
- {
858
- "skill": "quest",
859
- "level": 107,
860
- "boostable": false
861
- }
862
- ]
863
- },
864
- "elite": {
865
- "itemReward": "Ardougne cloak 4",
866
- "tasks": [],
867
- "itemsRequired": [],
868
- "questsRequired": [],
869
- "skillsRequired": []
870
- }
871
- },
872
- "Desert Diary": {
873
- "itemReward": "Desert amulet",
874
- "rewards": [],
875
- "name": "Desert Diary",
876
- "easy": {
877
- "tasks": [],
878
- "itemsRequired": [],
879
- "questsRequired": [],
880
- "skillsRequired": []
881
- },
882
- "medium": {
883
- "tasks": [],
884
- "itemsRequired": [],
885
- "questsRequired": [],
886
- "skillsRequired": []
887
- },
888
- "hard": {
889
- "tasks": [],
890
- "itemsRequired": [],
891
- "questsRequired": [],
892
- "skillsRequired": []
893
- },
894
- "elite": {
895
- "tasks": [],
896
- "itemsRequired": [],
897
- "questsRequired": [],
898
- "skillsRequired": []
899
- }
900
- },
901
- "Falador Diary": {
902
- "itemReward": "Falador shield",
903
- "easy": {
904
- "tasks": [],
905
- "itemsRequired": [],
906
- "questsRequired": [],
907
- "skillsRequired": []
908
- },
909
- "medium": {
910
- "tasks": [],
911
- "itemsRequired": [],
912
- "questsRequired": [],
913
- "skillsRequired": []
914
- },
915
- "hard": {
916
- "tasks": [],
917
- "itemsRequired": [],
918
- "questsRequired": [],
919
- "skillsRequired": []
920
- },
921
- "elite": {
922
- "tasks": [],
923
- "itemsRequired": [],
924
- "questsRequired": [],
925
- "skillsRequired": []
926
- }
927
- },
928
- "Fremennik Diary": {
929
- "itemReward": "Fremennik sea boots",
930
- "easy": {
931
- "tasks": [],
932
- "itemsRequired": [],
933
- "questsRequired": [],
934
- "skillsRequired": []
935
- },
936
- "medium": {
937
- "tasks": [],
938
- "itemsRequired": [],
939
- "questsRequired": [],
940
- "skillsRequired": []
941
- },
942
- "hard": {
943
- "tasks": [],
944
- "itemsRequired": [],
945
- "questsRequired": [],
946
- "skillsRequired": []
947
- },
948
- "elite": {
949
- "tasks": [],
950
- "itemsRequired": [],
951
- "questsRequired": [],
952
- "skillsRequired": []
953
- }
954
- },
955
- "Kandarin Diary": {
956
- "itemReward": "Kandarin headgear",
957
- "easy": {
958
- "tasks": [],
959
- "itemsRequired": [],
960
- "questsRequired": [],
961
- "skillsRequired": []
962
- },
963
- "medium": {
964
- "tasks": [],
965
- "itemsRequired": [],
966
- "questsRequired": [],
967
- "skillsRequired": []
968
- },
969
- "hard": {
970
- "tasks": [],
971
- "itemsRequired": [],
972
- "questsRequired": [],
973
- "skillsRequired": []
974
- },
975
- "elite": {
976
- "tasks": [],
977
- "itemsRequired": [],
978
- "questsRequired": [],
979
- "skillsRequired": []
980
- }
981
- },
982
- "Karamja Diary": {
983
- "itemReward": "Karamja gloves",
984
- "easy": {
985
- "tasks": [],
986
- "itemsRequired": [],
987
- "questsRequired": [],
988
- "skillsRequired": []
989
- },
990
- "medium": {
991
- "tasks": [],
992
- "itemsRequired": [],
993
- "questsRequired": [],
994
- "skillsRequired": []
995
- },
996
- "hard": {
997
- "tasks": [],
998
- "itemsRequired": [],
999
- "questsRequired": [],
1000
- "skillsRequired": []
1001
- },
1002
- "elite": {
1003
- "tasks": [],
1004
- "itemsRequired": [],
1005
- "questsRequired": [],
1006
- "skillsRequired": []
1007
- }
1008
- },
1009
- "Kourend & Kebos Diary": {
1010
- "itemReward": "Rada's blessing",
1011
- "easy": {
1012
- "tasks": [],
1013
- "itemsRequired": [],
1014
- "questsRequired": [],
1015
- "skillsRequired": []
1016
- },
1017
- "medium": {
1018
- "tasks": [],
1019
- "itemsRequired": [],
1020
- "questsRequired": [],
1021
- "skillsRequired": []
1022
- },
1023
- "hard": {
1024
- "tasks": [],
1025
- "itemsRequired": [],
1026
- "questsRequired": [],
1027
- "skillsRequired": []
1028
- },
1029
- "elite": {
1030
- "tasks": [],
1031
- "itemsRequired": [],
1032
- "questsRequired": [],
1033
- "skillsRequired": []
1034
- }
1035
- },
1036
- "Lumbridge & Draynor Diary": {
1037
- "itemReward": "Explorer's ring",
1038
- "easy": {
1039
- "tasks": [],
1040
- "itemsRequired": [],
1041
- "questsRequired": [],
1042
- "skillsRequired": []
1043
- },
1044
- "medium": {
1045
- "tasks": [],
1046
- "itemsRequired": [],
1047
- "questsRequired": [],
1048
- "skillsRequired": []
1049
- },
1050
- "hard": {
1051
- "tasks": [],
1052
- "itemsRequired": [],
1053
- "questsRequired": [],
1054
- "skillsRequired": []
1055
- },
1056
- "elite": {
1057
- "tasks": [],
1058
- "itemsRequired": [],
1059
- "questsRequired": [],
1060
- "skillsRequired": []
1061
- }
1062
- },
1063
- "Morytania Diary": {
1064
- "itemReward": "Morytania legs",
1065
- "easy": {
1066
- "tasks": [],
1067
- "itemsRequired": [],
1068
- "questsRequired": [],
1069
- "skillsRequired": []
1070
- },
1071
- "medium": {
1072
- "tasks": [],
1073
- "itemsRequired": [],
1074
- "questsRequired": [],
1075
- "skillsRequired": []
1076
- },
1077
- "hard": {
1078
- "tasks": [],
1079
- "itemsRequired": [],
1080
- "questsRequired": [],
1081
- "skillsRequired": []
1082
- },
1083
- "elite": {
1084
- "tasks": [],
1085
- "itemsRequired": [],
1086
- "questsRequired": [],
1087
- "skillsRequired": []
1088
- }
1089
- },
1090
- "Varrock Diary": {
1091
- "itemReward": "Varrock armour",
1092
- "easy": {
1093
- "tasks": [],
1094
- "itemsRequired": [],
1095
- "questsRequired": [],
1096
- "skillsRequired": []
1097
- },
1098
- "medium": {
1099
- "tasks": [],
1100
- "itemsRequired": [],
1101
- "questsRequired": [],
1102
- "skillsRequired": []
1103
- },
1104
- "hard": {
1105
- "tasks": [],
1106
- "itemsRequired": [],
1107
- "questsRequired": [],
1108
- "skillsRequired": []
1109
- },
1110
- "elite": {
1111
- "tasks": [],
1112
- "itemsRequired": [],
1113
- "questsRequired": [],
1114
- "skillsRequired": []
1115
- }
1116
- },
1117
- "Western Provinces Diary": {
1118
- "itemReward": "Western banner",
1119
- "easy": {
1120
- "tasks": [],
1121
- "itemsRequired": [],
1122
- "questsRequired": [],
1123
- "skillsRequired": []
1124
- },
1125
- "medium": {
1126
- "tasks": [],
1127
- "itemsRequired": [],
1128
- "questsRequired": [],
1129
- "skillsRequired": []
1130
- },
1131
- "hard": {
1132
- "tasks": [],
1133
- "itemsRequired": [],
1134
- "questsRequired": [],
1135
- "skillsRequired": []
1136
- },
1137
- "elite": {
1138
- "tasks": [],
1139
- "itemsRequired": [],
1140
- "questsRequired": [],
1141
- "skillsRequired": []
1142
- }
1143
- },
1144
- "Wilderness Diary": {
1145
- "itemReward": "Wilderness sword",
1146
- "easy": {
1147
- "tasks": [],
1148
- "itemsRequired": [],
1149
- "questsRequired": [],
1150
- "skillsRequired": []
1151
- },
1152
- "medium": {
1153
- "tasks": [],
1154
- "itemsRequired": [],
1155
- "questsRequired": [],
1156
- "skillsRequired": []
1157
- },
1158
- "hard": {
1159
- "tasks": [],
1160
- "itemsRequired": [],
1161
- "questsRequired": [],
1162
- "skillsRequired": []
1163
- },
1164
- "elite": {
1165
- "tasks": [],
1166
- "itemsRequired": [],
1167
- "questsRequired": [],
1168
- "skillsRequired": []
1169
- }
1170
- }
1171
- }