-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrawler.txt
3378 lines (3378 loc) · 72.7 KB
/
crawler.txt
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
2::Cannonball
6::Cannon base
8::Cannon stand
10::Cannon barrels
12::Cannon furnace
36::Candle
39::Bronze arrowtips
40::Iron arrowtips
41::Steel arrowtips
42::Mithril arrowtips
43::Adamant arrowtips
44::Rune arrowtips
45::Opal bolt tips
46::Pearl bolt tips
47::Barb bolttips
48::Longbow (u)
50::Shortbow (u)
52::Arrow shaft
53::Headless arrow
54::Oak shortbow (u)
56::Oak longbow (u)
58::Willow longbow (u)
60::Willow shortbow (u)
62::Maple longbow (u)
64::Maple shortbow (u)
66::Yew longbow (u)
68::Yew shortbow (u)
70::Magic longbow (u)
72::Magic shortbow (u)
91::Guam potion (unf)
93::Marrentill potion (unf)
95::Tarromin potion (unf)
97::Harralander potion (unf)
99::Ranarr potion (unf)
101::Irit potion (unf)
103::Avantoe potion (unf)
105::Kwuarm potion (unf)
107::Cadantine potion (unf)
109::Dwarf weed potion (unf)
111::Torstol potion (unf)
113::Strength potion (4)
115::Strength potion (3)
117::Strength potion (2)
119::Strength potion (1)
121::Attack potion (3)
123::Attack potion (2)
125::Attack potion (1)
127::Restore potion (3)
129::Restore potion (2)
131::Restore potion (1)
133::Defence potion (3)
135::Defence potion (2)
137::Defence potion (1)
139::Prayer potion (3)
141::Prayer potion (2)
143::Prayer potion (1)
145::Super attack (3)
147::Super attack (2)
149::Super attack (1)
151::Fishing potion (3)
153::Fishing potion (2)
155::Fishing potion (1)
157::Super strength (3)
159::Super strength (2)
161::Super strength (1)
163::Super defence (3)
165::Super defence (2)
167::Super defence (1)
169::Ranging potion (3)
171::Ranging potion (2)
173::Ranging potion (1)
175::Antipoison (3)
177::Antipoison (2)
179::Antipoison (1)
181::Super antipoison (3)
183::Super antipoison (2)
185::Super antipoison (1)
187::Weapon poison
189::Zamorak brew (3)
191::Zamorak brew (2)
193::Zamorak brew (1)
195::Potion
197::Poison chalice
199::Grimy guam
201::Grimy marrentill
203::Grimy tarromin
205::Grimy harralander
207::Grimy ranarr
209::Grimy irit
211::Grimy avantoe
213::Grimy kwuarm
215::Grimy cadantine
217::Grimy dwarf weed
219::Grimy torstol
221::Eye of newt
223::Red spiders' eggs
225::Limpwurt root
227::Vial of water
229::Vial
231::Snape grass
233::Pestle and mortar
235::Unicorn horn dust
237::Unicorn horn
239::White berries
241::Dragon scale dust
243::Blue dragon scale
245::Wine of zamorak
247::Jangerberries
249::Clean guam
251::Clean marrentill
253::Clean tarromin
255::Clean harralander
257::Clean ranarr
259::Clean irit
261::Clean avantoe
263::Clean kwuarm
265::Clean cadantine
267::Clean dwarf weed
269::Clean torstol
288::Goblin mail
299::Mithril seeds
301::Lobster pot
303::Small fishing net
305::Big fishing net
307::Fishing rod
309::Fly fishing rod
311::Harpoon
313::Fishing bait
314::Feather
315::Shrimps
317::Raw shrimps
319::Anchovies
321::Raw anchovies
325::Sardine
327::Raw sardine
329::Salmon
331::Raw salmon
333::Trout
335::Raw trout
339::Cod
341::Raw cod
345::Raw herring
347::Herring
349::Raw pike
351::Pike
353::Raw mackerel
355::Mackerel
359::Raw tuna
361::Tuna
363::Raw bass
365::Bass
371::Raw swordfish
373::Swordfish
377::Raw lobster
379::Lobster
383::Raw shark
385::Shark
389::Raw manta ray
391::Manta ray
395::Raw sea turtle
397::Sea turtle
401::Seaweed
403::Edible seaweed
405::Casket
407::Oyster
411::Oyster pearl
413::Oyster pearls
426::Priest gown
428::Priest gown
434::Clay
436::Copper ore
438::Tin ore
440::Iron ore
442::Silver ore
444::Gold ore
447::Mithril ore
449::Adamantite ore
451::Runite ore
453::Coal
464::Strange fruit
526::Bones
528::Burnt bones
530::Bat bones
532::Big bones
534::Babydragon bones
536::Dragon bones
538::Druid's robe
540::Druid's robe
542::Monk's robe
544::Monk's robe
550::Newcomer map
554::Fire rune
555::Water rune
556::Air rune
557::Earth rune
558::Mind rune
559::Body rune
560::Death rune
561::Nature rune
562::Chaos rune
563::Law rune
564::Cosmic rune
565::Blood rune
566::Soul rune
567::Unpowered orb
569::Fire orb
571::Water orb
573::Air orb
575::Earth orb
577::Wizard robe
579::Wizard hat
581::Black robe
590::Tinderbox
592::Ashes
596::Unlit torch
598::Bronze fire arrows
600::Astronomy book
626::Pink boots
628::Green boots
630::Blue boots
632::Cream boots
634::Turquoise boots
636::Pink robe top
638::Green robe top
640::Blue robe top
642::Cream robe top
644::Turquoise robe top
646::Pink robe bottoms
648::Green robe bottoms
650::Blue robe bottoms
652::Cream robe bottoms
654::Turquoise robe bottoms
656::Pink hat
658::Green hat
660::Blue hat
662::Cream hat
664::Turquoise hat
753::Cadava berries
800::Bronze thrownaxe
801::Iron thrownaxe
802::Steel thrownaxe
803::Mithril thrownaxe
804::Adamant thrownaxe
805::Rune thrownaxe
806::Bronze dart
807::Iron dart
808::Steel dart
809::Mithril dart
810::Adamant dart
811::Rune dart
812::Bronze dart (p)
813::Iron dart (p)
814::Steel dart (p)
815::Mithril dart (p)
816::Adamant dart (p)
817::Rune dart (p)
819::Bronze dart tip
820::Iron dart tip
821::Steel dart tip
822::Mithril dart tip
823::Adamant dart tip
824::Rune dart tip
825::Bronze javelin
826::Iron javelin
827::Steel javelin
828::Mithril javelin
829::Adamant javelin
830::Rune javelin
831::Bronze javelin (p)
832::Iron javelin (p)
833::Steel javelin (p)
834::Mithril javelin (p)
835::Adamant javelin (p)
836::Rune javelin (p)
837::Crossbow
839::Longbow
841::Shortbow
843::Oak shortbow
845::Oak longbow
847::Willow longbow
849::Willow shortbow
851::Maple longbow
853::Maple shortbow
855::Yew longbow
857::Yew shortbow
859::Magic longbow
861::Magic shortbow
863::Iron knife
864::Bronze knife
865::Steel knife
866::Mithril knife
867::Adamant knife
868::Rune knife
869::Black knife
870::Bronze knife (p)
871::Iron knife (p)
872::Steel knife (p)
873::Mithril knife (p)
874::Black knife (p)
875::Adamant knife (p)
876::Rune knife (p)
877::Bronze bolts
878::Bronze bolts (p)
879::Opal bolts
880::Pearl bolts
881::Barbed bolts
882::Bronze arrow
883::Bronze arrow (p)
884::Iron arrow
885::Iron arrow (p)
886::Steel arrow
887::Steel arrow (p)
888::Mithril arrow
889::Mithril arrow (p)
890::Adamant arrow
891::Adamant arrow (p)
892::Rune arrow
893::Rune arrow (p)
942::Bronze fire arrows
946::Knife
948::Bear fur
950::Silk
952::Spade
954::Rope
958::Grey wolf fur
960::Plank
962::Christmas cracker
970::Papyrus
973::Charcoal
975::Machete
981::Disk of returning
983::Brass key
985::Tooth half of a key
987::Loop half of a key
989::Crystal key
991::Muddy key
993::Sinister key
1005::White apron
1007::Cape
1009::Brass necklace
1011::Blue skirt
1013::Pink skirt
1015::Black skirt
1017::Wizard hat
1019::Cape
1021::Cape
1023::Cape
1025::Eye patch
1027::Cape
1029::Cape
1031::Cape
1033::Zamorak robe
1035::Zamorak robe
1038::Red partyhat
1040::Yellow partyhat
1042::Blue partyhat
1044::Green partyhat
1046::Purple partyhat
1048::White partyhat
1050::Santa hat
1053::Green h'ween mask
1055::Blue h'ween mask
1057::Red h'ween mask
1059::Leather gloves
1061::Leather boots
1063::Leather vambraces
1065::Green d'hide vambraces
1067::Iron platelegs
1069::Steel platelegs
1071::Mithril platelegs
1073::Adamant platelegs
1075::Bronze platelegs
1077::Black platelegs
1079::Rune platelegs
1081::Iron plateskirt
1083::Steel plateskirt
1085::Mithril plateskirt
1087::Bronze plateskirt
1089::Black plateskirt
1091::Adamant plateskirt
1093::Rune plateskirt
1095::Leather chaps
1097::Studded chaps
1099::Green d'hide chaps
1101::Iron chainbody
1103::Bronze chainbody
1105::Steel chainbody
1107::Black chainbody
1109::Mithril chainbody
1111::Adamant chainbody
1113::Rune chainbody
1115::Iron platebody
1117::Bronze platebody
1119::Steel platebody
1121::Mithril platebody
1123::Adamant platebody
1125::Black platebody
1127::Rune platebody
1129::Leather body
1131::Hardleather body
1133::Studded body
1135::Green d'hide body
1137::Iron med helm
1139::Bronze med helm
1141::Steel med helm
1143::Mithril med helm
1145::Adamant med helm
1147::Rune med helm
1149::Dragon med helm
1151::Black med helm
1153::Iron full helm
1155::Bronze full helm
1157::Steel full helm
1159::Mithril full helm
1161::Adamant full helm
1163::Rune full helm
1165::Black full helm
1167::Leather cowl
1169::Coif
1171::Wooden shield
1173::Bronze sq shield
1175::Iron sq shield
1177::Steel sq shield
1179::Black sq shield
1181::Mithril sq shield
1183::Adamant sq shield
1185::Rune sq shield
1187::Dragon sq shield
1189::Bronze kiteshield
1191::Iron kiteshield
1193::Steel kiteshield
1195::Black kiteshield
1197::Mithril kiteshield
1199::Adamant kiteshield
1201::Rune kiteshield
1203::Iron dagger
1205::Bronze dagger
1207::Steel dagger
1209::Mithril dagger
1211::Adamant dagger
1213::Rune dagger
1215::Dragon dagger
1217::Black dagger
1219::Iron dagger (p)
1221::Bronze dagger (p)
1223::Steel dagger (p)
1225::Mithril dagger (p)
1227::Adamant dagger (p)
1229::Rune dagger (p)
1231::Dragon dagger (p)
1233::Black dagger (p)
1237::Bronze spear
1239::Iron spear
1241::Steel spear
1243::Mithril spear
1245::Adamant spear
1247::Rune spear
1249::Dragon spear
1251::Bronze spear (p)
1253::Iron spear (p)
1255::Steel spear (p)
1257::Mithril spear (p)
1259::Adamant spear (p)
1261::Rune spear (p)
1263::Dragon spear (p)
1265::Bronze pickaxe
1267::Iron pickaxe
1269::Steel pickaxe
1271::Adamant pickaxe
1273::Mithril pickaxe
1275::Rune pickaxe
1277::Bronze sword
1279::Iron sword
1281::Steel sword
1283::Black sword
1285::Mithril sword
1287::Adamant sword
1289::Rune sword
1291::Bronze longsword
1293::Iron longsword
1295::Steel longsword
1297::Black longsword
1299::Mithril longsword
1301::Adamant longsword
1303::Rune longsword
1305::Dragon longsword
1307::Bronze 2h sword
1309::Iron 2h sword
1311::Steel 2h sword
1313::Black 2h sword
1315::Mithril 2h sword
1317::Adamant 2h sword
1319::Rune 2h sword
1321::Bronze scimitar
1323::Iron scimitar
1325::Steel scimitar
1327::Black scimitar
1329::Mithril scimitar
1331::Adamant scimitar
1333::Rune scimitar
1335::Iron warhammer
1337::Bronze warhammer
1339::Steel warhammer
1341::Black warhammer
1343::Mithril warhammer
1345::Adamant warhammer
1347::Rune warhammer
1349::Iron hatchet
1351::Bronze hatchet
1353::Steel hatchet
1355::Mithril hatchet
1357::Adamant hatchet
1359::Rune hatchet
1361::Black hatchet
1363::Iron battleaxe
1365::Steel battleaxe
1367::Black battleaxe
1369::Mithril battleaxe
1371::Adamant battleaxe
1373::Rune battleaxe
1375::Bronze battleaxe
1377::Dragon battleaxe
1379::Staff
1381::Staff of air
1383::Staff of water
1385::Staff of earth
1387::Staff of fire
1389::Magic staff
1391::Battlestaff
1393::Fire battlestaff
1395::Water battlestaff
1397::Air battlestaff
1399::Earth battlestaff
1401::Mystic fire staff
1403::Mystic water staff
1405::Mystic air staff
1407::Mystic earth staff
1420::Iron mace
1422::Bronze mace
1424::Steel mace
1426::Black mace
1428::Mithril mace
1430::Adamant mace
1432::Rune mace
1434::Dragon mace
1436::Rune essence
1438::Air talisman
1440::Earth talisman
1442::Fire talisman
1444::Water talisman
1446::Body talisman
1448::Mind talisman
1450::Blood talisman
1452::Chaos talisman
1454::Cosmic talisman
1456::Death talisman
1458::Law talisman
1462::Nature talisman
1464::Archery ticket
1470::Red bead
1472::Yellow bead
1474::Black bead
1476::White bead
1478::Amulet of accuracy
1511::Logs
1513::Magic logs
1515::Yew logs
1517::Maple logs
1519::Willow logs
1521::Oak logs
1523::Lockpick
1539::Steel nails
1540::Anti-dragon shield
1550::Garlic
1592::Ring mould
1595::Amulet mould
1597::Necklace mould
1599::Holy mould
1601::Diamond
1603::Ruby
1605::Emerald
1607::Sapphire
1609::Opal
1611::Jade
1613::Red topaz
1615::Dragonstone
1617::Uncut diamond
1619::Uncut ruby
1621::Uncut emerald
1623::Uncut sapphire
1625::Uncut opal
1627::Uncut jade
1629::Uncut red topaz
1631::Uncut dragonstone
1635::Gold ring
1637::Sapphire ring
1639::Emerald ring
1641::Ruby ring
1643::Diamond ring
1645::Dragonstone ring
1654::Gold necklace
1656::Sapphire necklace
1658::Emerald necklace
1660::Ruby necklace
1662::Diamond necklace
1664::Dragon necklace
1673::Gold amulet
1675::Sapphire amulet
1677::Emerald amulet
1679::Ruby amulet
1681::Diamond amulet
1683::Dragonstone ammy
1692::Gold amulet
1694::Sapphire amulet
1696::Emerald amulet
1698::Ruby amulet
1700::Diamond amulet
1702::Dragonstone ammy
1704::Amulet of glory
1712::Amulet of glory (4)
1714::Unstrung symbol
1716::Unblessed symbol
1718::Holy symbol
1720::Unstrung emblem
1722::Unpowered symbol
1724::Unholy symbol
1725::Amulet of strength
1727::Amulet of magic
1729::Amulet of defence
1731::Amulet of power
1733::Needle
1734::Thread
1735::Shears
1737::Wool
1739::Cowhide
1741::Leather
1743::Hard leather
1745::Green dragon leather
1747::Black dragonhide
1749::Red dragonhide
1751::Blue dragonhide
1753::Green dragonhide
1755::Chisel
1757::Brown apron
1759::Ball of wool
1761::Soft clay
1763::Red dye
1765::Yellow dye
1767::Blue dye
1769::Orange dye
1771::Green dye
1773::Purple dye
1775::Molten glass
1777::Bow string
1779::Flax
1781::Soda ash
1783::Bucket of sand
1785::Glassblowing pipe
1787::Pot (unfired)
1789::Pie dish (unfired)
1791::Bowl (unfired)
1793::Woad leaf
1794::Bronze wire
1823::Waterskin (4)
1831::Waterskin (0)
1833::Desert shirt
1835::Desert robe
1837::Desert boots
1859::Raw ugthanki meat
1861::Ugthanki meat
1863::Pitta dough
1865::Pitta bread
1869::Chopped tomato
1871::Chopped onion
1873::Chopped ugthanki
1875::Onion & tomato
1877::Ugthanki & onion
1879::Ugthanki & tomato
1881::Kebab mix
1883::Ugthanki kebab
1885::Ugthanki kebab
1887::Cake tin
1889::Uncooked cake
1891::Cake
1893::2/3 cake
1895::Slice of cake
1897::Chocolate cake
1899::2/3 chocolate cake
1901::Chocolate slice
1905::Asgarnian ale
1907::Wizard's mind bomb
1909::Greenman's ale
1911::Dragon bitter
1913::Dwarven stout
1915::Grog
1917::Beer
1919::Beer glass
1921::Bowl of water
1923::Bowl
1925::Bucket
1927::Bucket of milk
1929::Bucket of water
1931::Empty pot
1933::Pot of flour
1935::Jug
1937::Jug of water
1939::Swamp tar
1940::Raw swamp paste
1941::Swamp paste
1942::Potato
1944::Egg
1947::Grain
1949::Chef's hat
1951::Redberries
1953::Pastry dough
1955::Cooking apple
1957::Onion
1959::Pumpkin
1961::Easter egg
1963::Banana
1965::Cabbage
1971::Kebab
1973::Chocolate bar
1975::Chocolate dust
1978::Cup of tea
1980::Empty cup
1982::Tomato
1985::Cheese
1987::Grapes
1989::Half full wine jug
1993::Jug of wine
1997::Incomplete stew
1999::Incomplete stew
2001::Uncooked stew
2003::Stew
2007::Spice
2009::Uncooked curry
2011::Curry
2015::Vodka
2017::Whisky
2019::Gin
2021::Brandy
2028::Premade blurb' sp.
2030::Premade choc s'dy
2032::Premade dr' dragon
2034::Premade fr' blast
2036::Premade p' punch
2038::Premade sgg
2040::Premade wiz blz'd
2048::Pineapple punch
2054::Wizard blizzard
2064::Blurberry special
2074::Choc saturday
2080::Short green guy
2084::Fruit blast
2092::Drunk dragon
2102::Lemon
2104::Lemon chunks
2106::Lemon slices
2108::Orange
2110::Orange chunks
2112::Orange slices
2114::Pineapple
2116::Pineapple chunks
2118::Pineapple ring
2120::Lime
2122::Lime chunks
2124::Lime slices
2126::Dwellberries
2128::Equa leaves
2130::Pot of cream
2132::Raw beef
2134::Raw rat meat
2136::Raw bear meat
2138::Raw chicken
2140::Cooked chicken
2142::Cooked meat
2150::Swamp toad
2152::Toad's legs
2162::King worm
2169::Gnome spice
2171::Gianne dough
2185::Chocolate bomb
2187::Tangled toads' legs
2191::Worm hole
2195::Veg ball
2202::Raw crunchies
2205::Worm crunchies
2209::Chocchip crunchies
2213::Spicy crunchies
2217::Toad crunchies
2219::Premade w'm batta
2221::Premade t'd batta
2223::Premade c+t batta
2225::Premade fr't batta
2227::Premade veg batta
2229::Premade choc bomb
2231::Premade ttl
2233::Premade worm hole
2235::Premade veg ball
2237::Premade w'm crun'
2239::Premade ch' crunch
2241::Premade s'y crunch
2243::Premade t'd crunch
2253::Worm batta
2255::Toad batta
2259::Cheese+tom batta
2277::Fruit batta
2281::Vegetable batta
2283::Pizza base
2285::Incomplete pizza
2287::Uncooked pizza
2289::Plain pizza
2291::1/2 plain pizza
2293::Meat pizza
2295::1/2 meat pizza
2297::Anchovy pizza
2299::1/2 anchovy pizza
2301::Pineapple pizza
2303::1/2 p'apple pizza
2307::Bread dough
2309::Bread
2313::Pie dish
2315::Pie shell
2317::Uncooked apple pie
2319::Uncooked meat pie
2321::Uncooked berry pie
2323::Apple pie
2325::Redberry pie
2327::Meat pie
2331::Half a meat pie
2333::Half a redberry pie
2335::Half an apple pie
2337::Raw oomlie
2341::Wrapped oomlie
2343::Cooked oomlie wrap
2347::Hammer
2349::Bronze bar
2351::Iron bar
2353::Steel bar
2355::Silver bar
2357::Gold bar
2359::Mithril bar
2361::Adamant bar
2363::Rune bar
2366::Shield left half
2368::Shield right half
2370::Steel studs
2391::Ground bat bones
2428::Attack potion (4)
2430::Restore potion (4)
2432::Defence potion (4)
2434::Prayer potion (4)
2436::Super attack (4)
2438::Fishing potion (4)
2440::Super strength (4)
2442::Super defence (4)
2444::Ranging potion (4)
2446::Antipoison (4)
2448::Super antipoison (4)
2450::Zamorak brew (4)
2452::Antifire (4)
2454::Antifire (3)
2456::Antifire (2)
2458::Antifire (1)
2460::Flowers
2462::Red flowers
2464::Blue flowers
2466::Yellow flowers
2468::Purple flowers
2470::Orange flowers
2472::Flowers
2474::White flowers
2476::Black flowers
2481::Clean lantadyme
2483::Lantadyme potion (unf)
2485::Grimy lantadyme
2487::Blue d'hide vambraces
2489::Red d'hide vambraces
2491::Black d'hide vambraces
2493::Blue d'hide chaps
2495::Red d'hide chaps
2497::Black d'hide chaps
2499::Blue d'hide body
2501::Red d'hide body
2503::Black d'hide body
2505::Blue dragon leather
2507::Red dragon leather
2509::Black dragon leather
2532::Iron fire arrows
2533::Iron fire arrows
2534::Steel fire arrows
2535::Steel fire arrows
2536::Mithril fire arrows
2537::Mithril fire arrows
2538::Adamant fire arrows
2539::Adamant fire arrows
2540::Rune fire arrows
2541::Rune fire arrows
2550::Ring of recoil
2552::Ring of duelling (8)
2566::Ring of duelling (1)
2568::Ring of forging
2570::Ring of life
2572::Ring of wealth
2577::Ranger boots
2579::Wizard boots
2581::Robin hood hat
2583::Black platebody (t)
2585::Black platelegs (t)
2587::Black full helm (t)
2589::Black kiteshield (t)
2591::Black platebody (g)
2593::Black platelegs (g)
2595::Black full helm (g)
2597::Black kiteshield (g)
2599::Adamant platebody (t)
2601::Adamant platelegs (t)
2603::Adamant kiteshield (t)
2605::Adamant full helm (t)
2607::Adamant platebody (g)
2609::Adamant platelegs (g)
2611::Adamant kiteshield (g)
2613::Adamant full helm (g)
2615::Rune platebody (g)
2617::Rune platelegs (g)
2619::Rune full helm (g)
2621::Rune kiteshield (g)
2623::Rune platebody (t)
2625::Rune platelegs (t)
2627::Rune full helm (t)
2629::Rune kiteshield (t)
2631::Highwayman mask
2633::Blue beret
2635::Black beret
2637::White beret
2639::Tan cavalier
2641::Dark cavalier
2643::Black cavalier
2645::Red headband
2647::Black headband
2649::Brown headband
2651::Pirate's hat
2653::Zamorak platebody
2655::Zamorak platelegs
2657::Zamorak full helm
2659::Zamorak kiteshield
2661::Saradomin platebody
2663::Saradomin platelegs
2665::Saradomin full helm
2667::Saradomin kiteshield
2669::Guthix platebody
2671::Guthix platelegs
2673::Guthix full helm
2675::Guthix kiteshield
2859::Wolf bones
2861::Wolfbone arrowtips
2862::Achey tree logs
2864::Ogre arrow shaft
2865::Flighted ogre arrow
2866::Ogre arrow
2876::Raw chompy
2878::Cooked chompy
2890::Elemental shield
2894::Boots
2896::Robe top
2898::Robe bottoms
2900::Hat
2902::Gloves
2904::Boots
2906::Robe top
2908::Robe bottoms
2910::Hat
2912::Gloves
2914::Boots
2916::Robe top
2918::Robe bottoms
2920::Hat
2922::Gloves
2924::Boots
2926::Robe top
2928::Robe bottoms
2930::Hat
2932::Gloves
2934::Boots
2936::Robe top
2938::Robe bottoms
2940::Hat
2942::Gloves
2955::Moonlight mead
2961::Silver sickle
2970::Mort myre fungus
2972::Mort myre stem
2974::Mort myre pear
2976::Sickle mould
2997::Pirate's hook
2998::Clean toadflax
3000::Clean snapdragon
3002::Toadflax potion (unf)
3004::Snapdragon potion (unf)