-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy patheasy.json
More file actions
2563 lines (2563 loc) · 109 KB
/
easy.json
File metadata and controls
2563 lines (2563 loc) · 109 KB
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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "easy",
"tasks": [
{
"id": "5aa40ab6-d572-4b7b-ae0e-bed226478f13",
"name": "Get Bolt racks from Barrows",
"tip": "Can be obtained by completing the Barrows.",
"wikiLink": "https://oldschool.runescape.wiki/w/Bolt_rack",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Bolt_rack_detail.png/320px-Bolt_rack_detail.png",
"displayItemId": 4740,
"verification": {
"method": "collection-log",
"itemIds": [ 4740 ],
"count": 1
}
},
{
"id": "11968c49-8398-4125-826c-829dfe85b0b2",
"name": "Get a Mole claw + skin",
"tip": "Mole Skin and Mole Claw are guaranteed drops from the Giant Mole boss.",
"wikiLink": "https://oldschool.runescape.wiki/w/Giant_Mole",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Mole_claw_detail.png/320px-Mole_claw_detail.png",
"displayItemId": 7416,
"verification": {
"method": "collection-log",
"itemIds": [ 7416, 7418 ],
"count": 2
}
},
{
"id": "b9fe2097-02ec-4885-8072-1a303c93e147",
"name": "Get 1 unique from Wintertodt",
"tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Why Fletch?",
"wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Pyromancer_hood_detail.png/320px-Pyromancer_hood_detail.png",
"displayItemId": 20708,
"verification": {
"method": "collection-log",
"itemIds": [ 20704, 20706, 20708, 20710, 20712, 20716, 20718, 20720 ],
"count": 1
}
},
{
"id": "c09587c2-f732-42ff-8bb1-35f9d657e9c7",
"name": "Get 1 unique from Wintertodt",
"tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Why Fletch?",
"wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Pyromancer_hood_detail.png/320px-Pyromancer_hood_detail.png",
"displayItemId": 20708,
"verification": {
"method": "collection-log",
"itemIds": [ 20704, 20706, 20708, 20710, 20712, 20716, 20718, 20720 ],
"count": 2
}
},
{
"id": "f1587710-61b2-4ecf-9fe5-ef63be0aed95",
"name": "Get 1 unique from Wintertodt",
"tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Why Fletch?",
"wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Pyromancer_hood_detail.png/320px-Pyromancer_hood_detail.png",
"displayItemId": 20708,
"verification": {
"method": "collection-log",
"itemIds": [ 20704, 20706, 20708, 20710, 20712, 20716, 20718, 20720 ],
"count": 3
}
},
{
"id": "25bfc85a-0429-478a-b3af-498e35918a71",
"name": "Get 1 unique from Wintertodt",
"tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Why Fletch?",
"wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Pyromancer_hood_detail.png/320px-Pyromancer_hood_detail.png",
"displayItemId": 20708,
"verification": {
"method": "collection-log",
"itemIds": [ 20704, 20706, 20708, 20710, 20712, 20716, 20718, 20720 ],
"count": 4
}
},
{
"id": "4943aa05-a4b2-48ca-876d-42dc98e063a7",
"name": "Get 1 unique from Wintertodt",
"tip": "Wintertodt uniques come from the Wintertodt Skilling boss. Dragon axe does not count this task. Dragon axe is a Dagannoth Kings task. Why Fletch?",
"wikiLink": "https://oldschool.runescape.wiki/w/Wintertodt",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Pyromancer_hood_detail.png/320px-Pyromancer_hood_detail.png",
"displayItemId": 20708,
"verification": {
"method": "collection-log",
"itemIds": [ 20704, 20706, 20708, 20710, 20712, 20716, 20718, 20720 ],
"count": 5
}
},
{
"id": "b8bd103e-f072-46ff-894e-3a8b91052849",
"name": "Get 3 new uniques from beginner clues",
"tip": "Potential reward from beginner clues. Typically you would want to kill Goblins or Minotaurs for the clues themselves.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(beginner)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(beginner)_detail.png/320px-Clue_scroll_(beginner)_detail.png",
"displayItemId": 23182,
"verification": {
"method": "collection-log",
"itemIds": [
23285, 23288, 23291, 23294, 23297, 23300, 23303, 23306, 23309, 23312, 23315,
23318, 23321, 23324, 23327
],
"count": 3
}
},
{
"id": "8b801928-9c3b-4497-806c-dbaa4a918090",
"name": "Get 3 new uniques from beginner clues",
"tip": "Potential reward from beginner clues. Typically you would want to kill Goblins or Minotaurs for the clues themselves.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(beginner)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(beginner)_detail.png/320px-Clue_scroll_(beginner)_detail.png",
"displayItemId": 23182,
"verification": {
"method": "collection-log",
"itemIds": [
23285, 23288, 23291, 23294, 23297, 23300, 23303, 23306, 23309, 23312, 23315,
23318, 23321, 23324, 23327
],
"count": 6
}
},
{
"id": "cd746414-1422-4fe1-bc10-adc8c02f833c",
"name": "Get 5 new uniques from easy clues",
"tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(easy)_detail.png/320px-Clue_scroll_(easy)_detail.png",
"displayItemId": 2677,
"verification": {
"method": "collection-log",
"itemIds": [
2583, 2585, 2587, 2589, 2591, 2593, 2595, 2597, 2631, 2633, 2635,
2637, 3472, 3473, 7332, 7338, 7344, 7350, 7356, 7362, 7364, 7366,
7368, 7386, 7388, 7390, 7392, 7394, 7396, 10280, 10306, 10308, 10310,
10312, 10314, 10316, 10318, 10320, 10322, 10324, 10366, 10392, 10394, 10396,
10398, 10404, 10406, 10408, 10410, 10412, 10414, 10424, 10426, 10428, 10430,
10432, 10434, 10458, 10460, 10462, 10464, 10466, 10468, 12193, 12195, 12205,
12207, 12209, 12211, 12213, 12215, 12217, 12219, 12221, 12223, 12225, 12227,
12229, 12231, 12233, 12235, 12237, 12239, 12241, 12243, 12245, 12247, 12249,
12251, 12253, 12255, 12265, 12267, 12297, 12375, 12445, 12447, 12449, 12451,
12453, 12455, 20166, 20169, 20172, 20175, 20178, 20181, 20184, 20187, 20190,
20193, 20196, 20199, 20202, 20205, 20208, 20211, 20214, 20217, 23351, 23354,
23357, 23360, 23363, 23366, 23369, 23372, 23375, 23378, 23381, 23384
],
"count": 5
}
},
{
"id": "531a9fcb-edf7-4a9d-a31d-231fa4777a8d",
"name": "Get 5 new uniques from easy clues",
"tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(easy)_detail.png/320px-Clue_scroll_(easy)_detail.png",
"displayItemId": 2677,
"verification": {
"method": "collection-log",
"itemIds": [
2583, 2585, 2587, 2589, 2591, 2593, 2595, 2597, 2631, 2633, 2635,
2637, 3472, 3473, 7332, 7338, 7344, 7350, 7356, 7362, 7364, 7366,
7368, 7386, 7388, 7390, 7392, 7394, 7396, 10280, 10306, 10308, 10310,
10312, 10314, 10316, 10318, 10320, 10322, 10324, 10366, 10392, 10394, 10396,
10398, 10404, 10406, 10408, 10410, 10412, 10414, 10424, 10426, 10428, 10430,
10432, 10434, 10458, 10460, 10462, 10464, 10466, 10468, 12193, 12195, 12205,
12207, 12209, 12211, 12213, 12215, 12217, 12219, 12221, 12223, 12225, 12227,
12229, 12231, 12233, 12235, 12237, 12239, 12241, 12243, 12245, 12247, 12249,
12251, 12253, 12255, 12265, 12267, 12297, 12375, 12445, 12447, 12449, 12451,
12453, 12455, 20166, 20169, 20172, 20175, 20178, 20181, 20184, 20187, 20190,
20193, 20196, 20199, 20202, 20205, 20208, 20211, 20214, 20217, 23351, 23354,
23357, 23360, 23363, 23366, 23369, 23372, 23375, 23378, 23381, 23384
],
"count": 10
}
},
{
"id": "2a0f94af-b882-4f1d-b676-b7f14d455619",
"name": "Get 5 new uniques from easy clues",
"tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(easy)_detail.png/320px-Clue_scroll_(easy)_detail.png",
"displayItemId": 2677,
"verification": {
"method": "collection-log",
"itemIds": [
2583, 2585, 2587, 2589, 2591, 2593, 2595, 2597, 2631, 2633, 2635,
2637, 3472, 3473, 7332, 7338, 7344, 7350, 7356, 7362, 7364, 7366,
7368, 7386, 7388, 7390, 7392, 7394, 7396, 10280, 10306, 10308, 10310,
10312, 10314, 10316, 10318, 10320, 10322, 10324, 10366, 10392, 10394, 10396,
10398, 10404, 10406, 10408, 10410, 10412, 10414, 10424, 10426, 10428, 10430,
10432, 10434, 10458, 10460, 10462, 10464, 10466, 10468, 12193, 12195, 12205,
12207, 12209, 12211, 12213, 12215, 12217, 12219, 12221, 12223, 12225, 12227,
12229, 12231, 12233, 12235, 12237, 12239, 12241, 12243, 12245, 12247, 12249,
12251, 12253, 12255, 12265, 12267, 12297, 12375, 12445, 12447, 12449, 12451,
12453, 12455, 20166, 20169, 20172, 20175, 20178, 20181, 20184, 20187, 20190,
20193, 20196, 20199, 20202, 20205, 20208, 20211, 20214, 20217, 23351, 23354,
23357, 23360, 23363, 23366, 23369, 23372, 23375, 23378, 23381, 23384
],
"count": 15
}
},
{
"id": "8cb12adf-67b6-4a84-8227-846fbfedb541",
"name": "Get 5 new uniques from easy clues",
"tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(easy)_detail.png/320px-Clue_scroll_(easy)_detail.png",
"displayItemId": 2677,
"verification": {
"method": "collection-log",
"itemIds": [
2583, 2585, 2587, 2589, 2591, 2593, 2595, 2597, 2631, 2633, 2635,
2637, 3472, 3473, 7332, 7338, 7344, 7350, 7356, 7362, 7364, 7366,
7368, 7386, 7388, 7390, 7392, 7394, 7396, 10280, 10306, 10308, 10310,
10312, 10314, 10316, 10318, 10320, 10322, 10324, 10366, 10392, 10394, 10396,
10398, 10404, 10406, 10408, 10410, 10412, 10414, 10424, 10426, 10428, 10430,
10432, 10434, 10458, 10460, 10462, 10464, 10466, 10468, 12193, 12195, 12205,
12207, 12209, 12211, 12213, 12215, 12217, 12219, 12221, 12223, 12225, 12227,
12229, 12231, 12233, 12235, 12237, 12239, 12241, 12243, 12245, 12247, 12249,
12251, 12253, 12255, 12265, 12267, 12297, 12375, 12445, 12447, 12449, 12451,
12453, 12455, 20166, 20169, 20172, 20175, 20178, 20181, 20184, 20187, 20190,
20193, 20196, 20199, 20202, 20205, 20208, 20211, 20214, 20217, 23351, 23354,
23357, 23360, 23363, 23366, 23369, 23372, 23375, 23378, 23381, 23384
],
"count": 20
}
},
{
"id": "f2d67787-b4c5-4055-b9dd-9fd6a6890d90",
"name": "Get 5 new uniques from easy clues",
"tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(easy)_detail.png/320px-Clue_scroll_(easy)_detail.png",
"displayItemId": 2677,
"verification": {
"method": "collection-log",
"itemIds": [
2583, 2585, 2587, 2589, 2591, 2593, 2595, 2597, 2631, 2633, 2635,
2637, 3472, 3473, 7332, 7338, 7344, 7350, 7356, 7362, 7364, 7366,
7368, 7386, 7388, 7390, 7392, 7394, 7396, 10280, 10306, 10308, 10310,
10312, 10314, 10316, 10318, 10320, 10322, 10324, 10366, 10392, 10394, 10396,
10398, 10404, 10406, 10408, 10410, 10412, 10414, 10424, 10426, 10428, 10430,
10432, 10434, 10458, 10460, 10462, 10464, 10466, 10468, 12193, 12195, 12205,
12207, 12209, 12211, 12213, 12215, 12217, 12219, 12221, 12223, 12225, 12227,
12229, 12231, 12233, 12235, 12237, 12239, 12241, 12243, 12245, 12247, 12249,
12251, 12253, 12255, 12265, 12267, 12297, 12375, 12445, 12447, 12449, 12451,
12453, 12455, 20166, 20169, 20172, 20175, 20178, 20181, 20184, 20187, 20190,
20193, 20196, 20199, 20202, 20205, 20208, 20211, 20214, 20217, 23351, 23354,
23357, 23360, 23363, 23366, 23369, 23372, 23375, 23378, 23381, 23384
],
"count": 25
}
},
{
"id": "29d36179-66b9-454f-b35d-a707d1bc7f96",
"name": "Get 5 new uniques from easy clues",
"tip": "Potential reward from easy clues. Pick pocketing H.A.M members are a great way of getting the clues.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(easy)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(easy)_detail.png/320px-Clue_scroll_(easy)_detail.png",
"displayItemId": 2677,
"verification": {
"method": "collection-log",
"itemIds": [
2583, 2585, 2587, 2589, 2591, 2593, 2595, 2597, 2631, 2633, 2635,
2637, 3472, 3473, 7332, 7338, 7344, 7350, 7356, 7362, 7364, 7366,
7368, 7386, 7388, 7390, 7392, 7394, 7396, 10280, 10306, 10308, 10310,
10312, 10314, 10316, 10318, 10320, 10322, 10324, 10366, 10392, 10394, 10396,
10398, 10404, 10406, 10408, 10410, 10412, 10414, 10424, 10426, 10428, 10430,
10432, 10434, 10458, 10460, 10462, 10464, 10466, 10468, 12193, 12195, 12205,
12207, 12209, 12211, 12213, 12215, 12217, 12219, 12221, 12223, 12225, 12227,
12229, 12231, 12233, 12235, 12237, 12239, 12241, 12243, 12245, 12247, 12249,
12251, 12253, 12255, 12265, 12267, 12297, 12375, 12445, 12447, 12449, 12451,
12453, 12455, 20166, 20169, 20172, 20175, 20178, 20181, 20184, 20187, 20190,
20193, 20196, 20199, 20202, 20205, 20208, 20211, 20214, 20217, 23351, 23354,
23357, 23360, 23363, 23366, 23369, 23372, 23375, 23378, 23381, 23384
],
"count": 30
}
},
{
"id": "c4401064-7921-4c46-b64a-239b2375b02f",
"name": "Get 5 new uniques from medium clues",
"tip": "Killing guards is a decent way of getting the clues. Once you have 50 hunter, Eclectic implings are also a fantastic source.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(medium)_detail.png/320px-Clue_scroll_(medium)_detail.png",
"displayItemId": 2801,
"verification": {
"method": "collection-log",
"itemIds": [
2577, 2579, 2599, 2601, 2603, 2605, 2607, 2609, 2611, 2613, 2645,
2647, 2649, 3474, 3475, 7319, 7321, 7323, 7325, 7327, 7334, 7340,
7346, 7352, 7358, 7370, 7372, 7378, 7380, 10282, 10296, 10298, 10300,
10302, 10304, 10364, 10400, 10402, 10416, 10418, 10420, 10422, 10436, 10438,
10446, 10448, 10450, 10452, 10454, 10456, 12197, 12199, 12201, 12203, 12257,
12259, 12261, 12263, 12269, 12271, 12273, 12275, 12277, 12279, 12281, 12283,
12285, 12287, 12289, 12291, 12293, 12295, 12299, 12301, 12303, 12305, 12307,
12309, 12311, 12313, 12315, 12317, 12319, 12339, 12341, 12343, 12345, 12347,
12349, 12359, 12361, 12377, 12428, 12598, 20240, 20243, 20246, 20251, 20254,
20257, 20260, 20263, 20266, 20269, 20272, 20275, 23389, 23392, 23395, 23398,
23401, 23404, 23407, 23410, 23413
],
"count": 5
}
},
{
"id": "272fe596-e5f7-4bb2-be8d-deb4216564e2",
"name": "Get 5 new uniques from medium clues",
"tip": "Killing guards is a decent way of getting the clues. Once you have 50 hunter, Eclectic implings are also a fantastic source.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(medium)_detail.png/320px-Clue_scroll_(medium)_detail.png",
"displayItemId": 2801,
"verification": {
"method": "collection-log",
"itemIds": [
2577, 2579, 2599, 2601, 2603, 2605, 2607, 2609, 2611, 2613, 2645,
2647, 2649, 3474, 3475, 7319, 7321, 7323, 7325, 7327, 7334, 7340,
7346, 7352, 7358, 7370, 7372, 7378, 7380, 10282, 10296, 10298, 10300,
10302, 10304, 10364, 10400, 10402, 10416, 10418, 10420, 10422, 10436, 10438,
10446, 10448, 10450, 10452, 10454, 10456, 12197, 12199, 12201, 12203, 12257,
12259, 12261, 12263, 12269, 12271, 12273, 12275, 12277, 12279, 12281, 12283,
12285, 12287, 12289, 12291, 12293, 12295, 12299, 12301, 12303, 12305, 12307,
12309, 12311, 12313, 12315, 12317, 12319, 12339, 12341, 12343, 12345, 12347,
12349, 12359, 12361, 12377, 12428, 12598, 20240, 20243, 20246, 20251, 20254,
20257, 20260, 20263, 20266, 20269, 20272, 20275, 23389, 23392, 23395, 23398,
23401, 23404, 23407, 23410, 23413
],
"count": 10
}
},
{
"id": "db97ec80-5975-46e3-b1f7-063366e5ea1e",
"name": "Get 5 new uniques from medium clues",
"tip": "Killing guards is a decent way of getting the clues. Once you have 50 hunter, Eclectic implings are also a fantastic source.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(medium)_detail.png/320px-Clue_scroll_(medium)_detail.png",
"displayItemId": 2801,
"verification": {
"method": "collection-log",
"itemIds": [
2577, 2579, 2599, 2601, 2603, 2605, 2607, 2609, 2611, 2613, 2645,
2647, 2649, 3474, 3475, 7319, 7321, 7323, 7325, 7327, 7334, 7340,
7346, 7352, 7358, 7370, 7372, 7378, 7380, 10282, 10296, 10298, 10300,
10302, 10304, 10364, 10400, 10402, 10416, 10418, 10420, 10422, 10436, 10438,
10446, 10448, 10450, 10452, 10454, 10456, 12197, 12199, 12201, 12203, 12257,
12259, 12261, 12263, 12269, 12271, 12273, 12275, 12277, 12279, 12281, 12283,
12285, 12287, 12289, 12291, 12293, 12295, 12299, 12301, 12303, 12305, 12307,
12309, 12311, 12313, 12315, 12317, 12319, 12339, 12341, 12343, 12345, 12347,
12349, 12359, 12361, 12377, 12428, 12598, 20240, 20243, 20246, 20251, 20254,
20257, 20260, 20263, 20266, 20269, 20272, 20275, 23389, 23392, 23395, 23398,
23401, 23404, 23407, 23410, 23413
],
"count": 15
}
},
{
"id": "5719bb08-b9c3-4fee-b069-bd37b9589b39",
"name": "Get 5 new uniques from medium clues",
"tip": "Killing guards is a decent way of getting the clues. Once you have 50 hunter, Eclectic implings are also a fantastic source.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(medium)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(medium)_detail.png/320px-Clue_scroll_(medium)_detail.png",
"displayItemId": 2801,
"verification": {
"method": "collection-log",
"itemIds": [
2577, 2579, 2599, 2601, 2603, 2605, 2607, 2609, 2611, 2613, 2645,
2647, 2649, 3474, 3475, 7319, 7321, 7323, 7325, 7327, 7334, 7340,
7346, 7352, 7358, 7370, 7372, 7378, 7380, 10282, 10296, 10298, 10300,
10302, 10304, 10364, 10400, 10402, 10416, 10418, 10420, 10422, 10436, 10438,
10446, 10448, 10450, 10452, 10454, 10456, 12197, 12199, 12201, 12203, 12257,
12259, 12261, 12263, 12269, 12271, 12273, 12275, 12277, 12279, 12281, 12283,
12285, 12287, 12289, 12291, 12293, 12295, 12299, 12301, 12303, 12305, 12307,
12309, 12311, 12313, 12315, 12317, 12319, 12339, 12341, 12343, 12345, 12347,
12349, 12359, 12361, 12377, 12428, 12598, 20240, 20243, 20246, 20251, 20254,
20257, 20260, 20263, 20266, 20269, 20272, 20275, 23389, 23392, 23395, 23398,
23401, 23404, 23407, 23410, 23413
],
"count": 20
}
},
{
"id": "11fdf715-6c49-425e-a523-ba415e5e1f42",
"name": "Get 5 new uniques from hard clues",
"tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(hard)_detail.png/320px-Clue_scroll_(hard)_detail.png",
"displayItemId": 2722,
"verification": {
"method": "collection-log",
"itemIds": [
2581, 2615, 2617, 2619, 2621, 2623, 2625, 2627, 2629, 2639, 2641,
2643, 2651, 2653, 2655, 2657, 2659, 2661, 2663, 2665, 2667, 2669,
2671, 2673, 2675, 3476, 3477, 3478, 3479, 3480, 7336, 7342, 7348,
7354, 7360, 7374, 7376, 7382, 7384, 7398, 7399, 7400, 10284, 10286,
10288, 10290, 10292, 10294, 10354, 10368, 10370, 10372, 10374, 10376, 10378,
10380, 10382, 10384, 10386, 10388, 10390, 10440, 10442, 10444, 10470, 10472,
10474, 12321, 12323, 12325, 12327, 12329, 12331, 12333, 12379, 12460, 12462,
12464, 12466, 12468, 12470, 12472, 12474, 12476, 12478, 12480, 12482, 12484,
12486, 12488, 12490, 12492, 12494, 12496, 12498, 12500, 12502, 12504, 12506,
12508, 12510, 12512, 12514, 12516, 12518, 12520, 12522, 12524, 19912, 19915,
19918, 19921, 19924, 19927, 19930, 19933, 19936, 22231, 23188, 23191, 23194,
23197, 23200, 23203, 23206, 23209, 23212, 23215, 23218, 23221, 23224, 23227,
23232, 23237
],
"count": 5
}
},
{
"id": "38482a9b-dd2f-4a4c-a673-4dd771ba8000",
"name": "Get 5 new uniques from hard clues",
"tip": "Potential reward from hard clues. Killing hellhounds is a decent way of getting the clues.",
"wikiLink": "https://oldschool.runescape.wiki/w/Clue_scroll_(hard)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Clue_scroll_(hard)_detail.png/320px-Clue_scroll_(hard)_detail.png",
"displayItemId": 2722,
"verification": {
"method": "collection-log",
"itemIds": [
2581, 2615, 2617, 2619, 2621, 2623, 2625, 2627, 2629, 2639, 2641,
2643, 2651, 2653, 2655, 2657, 2659, 2661, 2663, 2665, 2667, 2669,
2671, 2673, 2675, 3476, 3477, 3478, 3479, 3480, 7336, 7342, 7348,
7354, 7360, 7374, 7376, 7382, 7384, 7398, 7399, 7400, 10284, 10286,
10288, 10290, 10292, 10294, 10354, 10368, 10370, 10372, 10374, 10376, 10378,
10380, 10382, 10384, 10386, 10388, 10390, 10440, 10442, 10444, 10470, 10472,
10474, 12321, 12323, 12325, 12327, 12329, 12331, 12333, 12379, 12460, 12462,
12464, 12466, 12468, 12470, 12472, 12474, 12476, 12478, 12480, 12482, 12484,
12486, 12488, 12490, 12492, 12494, 12496, 12498, 12500, 12502, 12504, 12506,
12508, 12510, 12512, 12514, 12516, 12518, 12520, 12522, 12524, 19912, 19915,
19918, 19921, 19924, 19927, 19930, 19933, 19936, 22231, 23188, 23191, 23194,
23197, 23200, 23203, 23206, 23209, 23212, 23215, 23218, 23221, 23224, 23227,
23232, 23237
],
"count": 10
}
},
{
"id": "a3b1b2c4-05cd-4171-aaec-9a074c0d713c",
"name": "Get Runner boots",
"tip": "Can be purchased as a reward from the Barbarian Assault minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. YIKES.",
"wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Runner_boots_detail.png/320px-Runner_boots_detail.png",
"displayItemId": 10552,
"verification": {
"method": "collection-log",
"itemIds": [ 10552 ],
"count": 1
}
},
{
"id": "1bc6158d-dd1e-499e-8ffd-3225eace2dae",
"name": "Get Penance gloves",
"tip": "Can be purchased as a reward from the Barbarian Assault minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. YIKES.",
"wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Penance_gloves_detail.png/320px-Penance_gloves_detail.png",
"displayItemId": 10553,
"verification": {
"method": "collection-log",
"itemIds": [ 10553 ],
"count": 1
}
},
{
"id": "c59bd20a-c811-47dd-85bb-23a68b92b144",
"name": "Get a Granite body",
"tip": "Can be purchased as a reward from the Barbarian Assault minigame. You can ask the Clan Chat or the Discord to gather a team, last ditch effort would be to do PUB runs in World 306.. YIKES.",
"wikiLink": "https://oldschool.runescape.wiki/w/Barbarian_Assault",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Granite_body_detail.png/320px-Granite_body_detail.png",
"displayItemId": 10564,
"verification": {
"method": "collection-log",
"itemIds": [ 10564 ],
"count": 1
}
},
{
"id": "5d8fc07b-a864-4afb-aec1-edefcdf60140",
"name": "Get 1 new halo",
"tip": "Can be purchased as a reward from the Castle Wars minigame. Playing on official worlds is recommended, as you get about the same amount of tickets in addition to other resources. Alternatively, you may play with an alt account (works in F2P) for complete AFK.",
"wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Saradomin_halo_detail.png/320px-Saradomin_halo_detail.png",
"displayItemId": 12637,
"verification": {
"method": "collection-log",
"itemIds": [ 12637, 12638, 12639 ],
"count": 1
}
},
{
"id": "af93b5ec-e862-4af6-b299-605da3275e74",
"name": "Get the full Red decorative set",
"tip": "Can be purchased as a reward from the Castle Wars minigame. Playing on official worlds is recommended, as you get about the same amount of tickets in addition to other resources. Alternatively, you may play with an alt account (works in F2P) for complete AFK.",
"wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Decorative_armour_(red_platebody)_detail.png/320px-Decorative_armour_(red_platebody)_detail.png",
"displayItemId": 4069,
"verification": {
"method": "collection-log",
"itemIds": [ 4068, 4069, 4070, 4071, 4072, 11893, 25163, 25165 ],
"count": 8
}
},
{
"id": "46ca45fc-4654-40dd-bcfa-9157b15f216f",
"name": "Get the Zamorak hood & cloak",
"tip": "Can be purchased as a reward from the Castle Wars minigame. Playing on official worlds is recommended, as you get about the same amount of tickets in addition to other resources. Alternatively, you may play with an alt account (works in F2P) for complete AFK.",
"wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Castlewars_hood_(Zamorak)_detail.png/320px-Castlewars_hood_(Zamorak)_detail.png",
"displayItemId": 4515,
"verification": {
"method": "collection-log",
"itemIds": [ 4515, 4516 ],
"count": 2
}
},
{
"id": "b05c1479-a3ab-475d-92ff-463be1232224",
"name": "Get the Saradomin hood & cloak",
"tip": "Can be purchased as a reward from the Castle Wars minigame. Playing on official worlds is recommended, as you get about the same amount of tickets in addition to other resources. Alternatively, you may play with an alt account (works in F2P) for complete AFK.",
"wikiLink": "https://oldschool.runescape.wiki/w/Castle_Wars",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Castlewars_hood_(Saradomin)_detail.png/320px-Castlewars_hood_(Saradomin)_detail.png",
"displayItemId": 4513,
"verification": {
"method": "collection-log",
"itemIds": [ 4513, 4514 ],
"count": 2
}
},
{
"id": "549a24ea-4798-4734-9f0c-b8cb39323c60",
"name": "Get 1 Angler piece",
"tip": "Potential reward from the Fishing Trawler minigame. Pro tip: Turn the camera shake off whilst within the minigame and don't let your feet get too wet.",
"wikiLink": "https://oldschool.runescape.wiki/w/Fishing_Trawler",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Angler_top_detail.png/320px-Angler_top_detail.png",
"displayItemId": 13259,
"verification": {
"method": "collection-log",
"itemIds": [ 13258, 13259, 13260, 13261 ],
"count": 1
}
},
{
"id": "1e9b6339-c463-4f6e-aae8-eff2943e1ea6",
"name": "Get 1 Angler piece",
"tip": "Potential reward from the Fishing Trawler minigame. Pro tip: Turn the camera shake off whilst within the minigame and don't let your feet get too wet.",
"wikiLink": "https://oldschool.runescape.wiki/w/Fishing_Trawler",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Angler_top_detail.png/320px-Angler_top_detail.png",
"displayItemId": 13259,
"verification": {
"method": "collection-log",
"itemIds": [ 13258, 13259, 13260, 13261 ],
"count": 2
}
},
{
"id": "3b8b6926-f4c2-406b-a3de-090775321720",
"name": "Get 1 Angler piece",
"tip": "Potential reward from the Fishing Trawler minigame. Pro tip: Turn the camera shake off whilst within the minigame and don't let your feet get too wet.",
"wikiLink": "https://oldschool.runescape.wiki/w/Fishing_Trawler",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Angler_top_detail.png/320px-Angler_top_detail.png",
"displayItemId": 13259,
"verification": {
"method": "collection-log",
"itemIds": [ 13258, 13259, 13260, 13261 ],
"count": 3
}
},
{
"id": "1c6e5f0c-1874-4633-ac5b-ca427b5a8431",
"name": "Get 1 Angler piece",
"tip": "Potential reward from the Fishing Trawler minigame. Pro tip: Turn the camera shake off whilst within the minigame and don't let your feet get too wet.",
"wikiLink": "https://oldschool.runescape.wiki/w/Fishing_Trawler",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Angler_top_detail.png/320px-Angler_top_detail.png",
"displayItemId": 13259,
"verification": {
"method": "collection-log",
"itemIds": [ 13258, 13259, 13260, 13261 ],
"count": 4
}
},
{
"id": "b5c34649-5e54-4d0c-999d-7f9ebf72d781",
"name": "Get 1 new unique from Gnome Restaurant",
"tip": "Potential reward from the Gnome Restaurant minigame. Complete hard deliveries.",
"wikiLink": "https://oldschool.runescape.wiki/w/Gnome_Restaurant",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Gnome_scarf_detail.png/320px-Gnome_scarf_detail.png",
"displayItemId": 9470,
"verification": {
"method": "collection-log",
"itemIds": [ 9469, 9470, 9472, 9475 ],
"count": 1
}
},
{
"id": "7c8cd7c2-9588-46e4-a55b-4c6e3b849c61",
"name": "Get the next tier of MTA wand",
"tip": "Can be purchased as a reward from the Mage Training Arena minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Beginner_wand_detail.png/320px-Beginner_wand_detail.png",
"displayItemId": 6908,
"verification": {
"method": "collection-log",
"itemIds": [ 6908, 6910, 6912, 6914 ],
"count": 1
}
},
{
"id": "cf28416e-9126-4ec3-b375-d3e7b84b89b4",
"name": "Get the next tier of MTA wand",
"tip": "Can be purchased as a reward from the Mage Training Arena minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Teacher_wand_detail.png/320px-Teacher_wand_detail.png",
"displayItemId": 6908,
"verification": {
"method": "collection-log",
"itemIds": [ 6908, 6910, 6912, 6914 ],
"count": 2
}
},
{
"id": "99060197-8200-4f3f-8e36-9bdb3bae4daa",
"name": "Get the next tier of MTA wand",
"tip": "Can be purchased as a reward from the Mage Training Arena minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Teacher_wand_detail.png/320px-Teacher_wand_detail.png",
"displayItemId": 6908,
"verification": {
"method": "collection-log",
"itemIds": [ 6908, 6910, 6912, 6914 ],
"count": 3
}
},
{
"id": "706bf548-5893-4b6b-849d-a3f8ae699201",
"name": "Unlock bones to peaches",
"tip": "Can be purchased as a reward from the Mage Training Arena minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Bones_to_Peaches_icon_(mobile).png/320px-Bones_to_Peaches_icon_(mobile).png",
"displayItemId": 6926,
"verification": {
"method": "collection-log",
"itemIds": [ 6926 ],
"count": 1
}
},
{
"id": "623e01ec-3fc9-4d79-8cf9-473438deface",
"name": "Get Infinity boots",
"tip": "Can be purchased as a reward from the Mage Training Arena minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Infinity_boots_detail.png/320px-Infinity_boots_detail.png",
"displayItemId": 6920,
"verification": {
"method": "collection-log",
"itemIds": [ 6920 ],
"count": 1
}
},
{
"id": "eb9282b7-017a-4cb5-9bc4-6710307486bc",
"name": "Get Infinity gloves",
"tip": "Can be purchased as a reward from the Mage Training Arena minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Mage_Training_Arena",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Infinity_gloves_detail.png/320px-Infinity_gloves_detail.png",
"displayItemId": 6922,
"verification": {
"method": "collection-log",
"itemIds": [ 6922 ],
"count": 1
}
},
{
"id": "100fc573-a473-4f8e-82d8-bda08f454a06",
"name": "Get a Void Knight seal",
"tip": "Can be purchased as a reward from the Pest Control minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Void_seal_detail.png/320px-Void_seal_detail.png",
"displayItemId": 11666,
"verification": {
"method": "collection-log",
"itemIds": [ 11666 ],
"count": 1
}
},
{
"id": "010d0bc4-d9e1-46da-a802-ed62efe66de7",
"name": "Get Void Knight gloves",
"tip": "Can be purchased as a reward from the Pest Control Combat minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Pest_Control",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Void_knight_gloves_detail.png/320px-Void_knight_gloves_detail.png",
"displayItemId": 8842,
"verification": {
"method": "collection-log",
"itemIds": [ 8842 ],
"count": 1
}
},
{
"id": "330d732a-5aad-463a-a79e-7b07f9dfbc2f",
"name": "Get 1 piece of Rogue equipment",
"tip": "Potential reward from the Rogues Den minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Rogues'_Den",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Rogue_top_detail.png/320px-Rogue_top_detail.png",
"displayItemId": 5553,
"verification": {
"method": "collection-log",
"itemIds": [ 5553, 5554, 5555, 5556, 5557 ],
"count": 1
}
},
{
"id": "b8dea3b4-7391-4487-a008-06348a866d93",
"name": "Get 1 piece of Rogue equipment",
"tip": "Potential reward from the Rogues Den minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Rogues'_Den",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Rogue_top_detail.png/320px-Rogue_top_detail.png",
"displayItemId": 5553,
"verification": {
"method": "collection-log",
"itemIds": [ 5553, 5554, 5555, 5556, 5557 ],
"count": 2
}
},
{
"id": "336e3028-a91b-4acb-ac66-256aa99ff381",
"name": "Get 1 piece of Rogue equipment",
"tip": "Potential reward from the Rogues Den minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Rogues'_Den",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Rogue_top_detail.png/320px-Rogue_top_detail.png",
"displayItemId": 5553,
"verification": {
"method": "collection-log",
"itemIds": [ 5553, 5554, 5555, 5556, 5557 ],
"count": 3
}
},
{
"id": "44c15a4c-fd1e-47ae-8651-7f807cce9ea5",
"name": "Get 1 piece of Rogue equipment",
"tip": "Potential reward from the Rogues Den minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Rogues'_Den",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Rogue_top_detail.png/320px-Rogue_top_detail.png",
"displayItemId": 5553,
"verification": {
"method": "collection-log",
"itemIds": [ 5553, 5554, 5555, 5556, 5557 ],
"count": 4
}
},
{
"id": "1555801d-9603-42c2-90bd-f056bc8404fe",
"name": "Get 1 piece of Rogue equipment",
"tip": "Potential reward from the Rogues Den minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Rogues'_Den",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Rogue_top_detail.png/320px-Rogue_top_detail.png",
"displayItemId": 5553,
"verification": {
"method": "collection-log",
"itemIds": [ 5553, 5554, 5555, 5556, 5557 ],
"count": 5
}
},
{
"id": "679c04c8-ff5b-4c47-a9dc-a4984d8366bb",
"name": "Get 1 unique from Shades of Mort'ton",
"tip": "Potential reward from the Shades of Morton minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort'ton_(minigame)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Fine_cloth_detail.png/320px-Fine_cloth_detail.png",
"displayItemId": 3470,
"verification": {
"method": "collection-log",
"itemIds": [
3470, 12851, 25434, 25436, 25438, 25440, 25442, 25445, 25448, 25451, 25454,
25474, 25476, 25630
],
"count": 1
}
},
{
"id": "9157d0d5-abca-4654-8646-38b293c22754",
"name": "Get 1 unique from Shades of Mort'ton",
"tip": "Potential reward from the Shades of Morton minigame.",
"wikiLink": "https://oldschool.runescape.wiki/w/Shades_of_Mort'ton_(minigame)",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Fine_cloth_detail.png/320px-Fine_cloth_detail.png",
"displayItemId": 3470,
"verification": {
"method": "collection-log",
"itemIds": [
3470, 12851, 25434, 25436, 25438, 25440, 25442, 25445, 25448, 25451, 25454,
25474, 25476, 25630
],
"count": 2
}
},
{
"id": "16e4779b-6093-4be1-9cac-17f36c5958fd",
"name": "Get 1 piece of Lumberjack equipment",
"tip": "Guaranteed reward from the Temple Trekking minigame find the correct \"Bog\" event. Do easy Treks for best results.",
"wikiLink": "https://oldschool.runescape.wiki/w/Temple_Trekking",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Lumberjack_top_detail.png/320px-Lumberjack_top_detail.png",
"displayItemId": 10939,
"verification": {
"method": "collection-log",
"itemIds": [ 10933, 10939, 10940, 10941 ],
"count": 1
}
},
{
"id": "505a8138-9414-406c-a739-a9c907c3e85f",
"name": "Get 1 piece of Lumberjack equipment",
"tip": "Guaranteed reward from the Temple Trekking minigame find the correct \"Bog\" event. Do easy Treks for best results.",
"wikiLink": "https://oldschool.runescape.wiki/w/Temple_Trekking",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Lumberjack_top_detail.png/320px-Lumberjack_top_detail.png",
"displayItemId": 10939,
"verification": {
"method": "collection-log",
"itemIds": [ 10933, 10939, 10940, 10941 ],
"count": 2
}
},
{
"id": "3c6bfbd5-f950-4e8c-8a7f-43afc849fe49",
"name": "Get 1 piece of Lumberjack equipment",
"tip": "Guaranteed reward from the Temple Trekking minigame find the correct \"Bog\" event. Do easy Treks for best results.",
"wikiLink": "https://oldschool.runescape.wiki/w/Temple_Trekking",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Lumberjack_top_detail.png/320px-Lumberjack_top_detail.png",
"displayItemId": 10939,
"verification": {
"method": "collection-log",
"itemIds": [ 10933, 10939, 10940, 10941 ],
"count": 3
}
},
{
"id": "79a0736d-d4a6-4708-a18b-f236f2cab147",
"name": "Get 1 piece of Lumberjack equipment",
"tip": "Guaranteed reward from the Temple Trekking minigame find the correct \"Bog\" event. Do easy Treks for best results.",
"wikiLink": "https://oldschool.runescape.wiki/w/Temple_Trekking",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Lumberjack_top_detail.png/320px-Lumberjack_top_detail.png",
"displayItemId": 10939,
"verification": {
"method": "collection-log",
"itemIds": [ 10933, 10939, 10940, 10941 ],
"count": 4
}
},
{
"id": "bd2c8923-be2b-4295-acd6-5f949dc3e27e",
"name": "Get the Gricoller's can",
"tip": "Can be purchased as a reward from the Tithe Farm minigame. Plant those seeds!",
"wikiLink": "https://oldschool.runescape.wiki/w/Gricoller's_can",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Gricoller's_can_detail.png/320px-Gricoller's_can_detail.png",
"displayItemId": 13353,
"verification": {
"method": "collection-log",
"itemIds": [ 13353 ],
"count": 1
}
},
{
"id": "f580b79d-da36-4d99-acd9-b23cabc31b68",
"name": "Get 1 piece of Farmer's equipment",
"tip": "Can be purchased as a reward from the Tithe Farm minigame. Plant those seeds!",
"wikiLink": "https://oldschool.runescape.wiki/w/Tithe_Farm",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Farmer's_jacket_detail.png/320px-Farmer's_jacket_detail.png",
"displayItemId": 13643,
"verification": {
"method": "collection-log",
"itemIds": [ 13640, 13642, 13644, 13646 ],
"count": 1
}
},
{
"id": "ae71c97d-0a6f-46e7-82e3-a7b1178c9f87",
"name": "Get 1 piece of Farmer's equipment",
"tip": "Can be purchased as a reward from the Tithe Farm minigame. Plant those seeds!",
"wikiLink": "https://oldschool.runescape.wiki/w/Tithe_Farm",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Farmer's_jacket_detail.png/320px-Farmer's_jacket_detail.png",
"displayItemId": 13643,
"verification": {
"method": "collection-log",
"itemIds": [ 13640, 13642, 13644, 13646 ],
"count": 2
}
},
{
"id": "8513ab1a-12dd-4f24-9939-a36a7015bbc5",
"name": "Get Blue Rum",
"tip": "Can be purchased as a reward from the Trouble Brewing minigame. Fill and deposit 100 buckets of water. Enjoy your AFK time.",
"wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Rum_(blue)_detail.png/320px-Rum_(blue)_detail.png",
"displayItemId": 8941,
"verification": {
"method": "collection-log",
"itemIds": [ 8941 ],
"count": 1
}
},
{
"id": "02111c7f-3db9-4eed-b848-dfa0e18a91d5",
"name": "Get Red Rum",
"tip": "Can be purchased as a reward from the Trouble Brewing minigame. Fill and deposit 100 buckets of water. Enjoy your AFK time.",
"wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Rum_(red)_detail.png/320px-Rum_(red)_detail.png",
"displayItemId": 8940,
"verification": {
"method": "collection-log",
"itemIds": [ 8940 ],
"count": 1
}
},
{
"id": "18edfb99-8954-400f-b6ec-a4f6281e5b39",
"name": "Get The stuff",
"tip": "Can be purchased as a reward from the Trouble Brewing minigame. Fill and deposit 100 buckets of water. Enjoy your AFK time.",
"wikiLink": "https://oldschool.runescape.wiki/w/Trouble_Brewing",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/The_stuff_detail.png/320px-The_stuff_detail.png",
"displayItemId": 8988,
"verification": {
"method": "collection-log",
"itemIds": [ 8988 ],
"count": 1
}
},
{
"id": "db8b3842-abfa-4b64-bf59-c820a0dce83d",
"name": "Get the Pearl fishing rod",
"tip": "Can be purchased as a reward from the Aerial Fishing hunter method. Good luck with that RSI.",
"wikiLink": "https://oldschool.runescape.wiki/w/Aerial_fishing",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Pearl_fishing_rod_detail.png/320px-Pearl_fishing_rod_detail.png",
"displayItemId": 22846,
"verification": {
"method": "collection-log",
"itemIds": [ 22846 ],
"count": 1
}
},
{
"id": "ddd13c53-541f-4330-ad5d-b8b8fbe2a0ac",
"name": "Get 1 unique Champion scroll",
"tip": "Can be received from a drop from several monsters. PRO TIP: Don't go 19,000 dry for goblin scroll...",
"wikiLink": "https://oldschool.runescape.wiki/w/Champion's_scroll",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Goblin_champion_scroll_detail.png/320px-Goblin_champion_scroll_detail.png",
"displayItemId": 6808,
"verification": {
"method": "collection-log",
"itemIds": [ 6798, 6799, 6800, 6801, 6802, 6803, 6804, 6805, 6806, 6807 ],
"count": 1
}
},
{
"id": "1d7c9237-a900-44f7-92e0-9013fb45dda8",
"name": "Get the Marksman headpiece",
"tip": "Guaranteed from Chompy bird hunting.",
"wikiLink": "https://oldschool.runescape.wiki/w/Chompy_bird_hunting",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Chompy_bird_hat_(marksman)_detail.png/320px-Chompy_bird_hat_(marksman)_detail.png",
"displayItemId": 2983,
"verification": {
"method": "collection-log",
"itemIds": [
2978, 2979, 2980, 2981, 2982, 2983, 2984, 2985, 2986, 2987, 2988, 2989, 2990,
2991, 2992, 2993, 2994, 2995
],
"count": 6
}
},
{
"id": "44cb00e0-3fab-4361-b9cf-22127b1c2f2d",
"name": "Get 1 unique from Creature Creation",
"tip": "Can be received as a drop from the Creature Creation \"minigame\". Make a abomination with two different ingredients, mix together and murder.",
"wikiLink": "https://oldschool.runescape.wiki/w/Creature_Creation",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Frogeel.png/320px-Frogeel.png",
"displayItemId": 25623,
"verification": {
"method": "collection-log",
"itemIds": [ 25617, 25618, 25619, 25620, 25621, 25622, 25623 ],
"count": 1
}
},
{
"id": "740a7a6e-efdf-4cc0-bac3-b27e38445ea3",
"name": "Get 1 unique from Creature Creation",
"tip": "Can be received as a drop from the Creature Creation \"minigame\". Make a abomination with two different ingredients, mix together and murder.",
"wikiLink": "https://oldschool.runescape.wiki/w/Creature_Creation",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Frogeel.png/320px-Frogeel.png",
"displayItemId": 25623,
"verification": {
"method": "collection-log",
"itemIds": [ 25617, 25618, 25619, 25620, 25621, 25622, 25623 ],
"count": 2
}
},
{
"id": "977865aa-cb22-4d3f-ad89-d7959e99570b",
"name": "Get 1 unique from Creature Creation",
"tip": "Can be received as a drop from the Creature Creation \"minigame\". Make a abomination with two different ingredients, mix together and murder.",
"wikiLink": "https://oldschool.runescape.wiki/w/Creature_Creation",
"imageLink": "https://oldschool.runescape.wiki/images/thumb/Frogeel.png/320px-Frogeel.png",
"displayItemId": 25623,
"verification": {
"method": "collection-log",