-
Notifications
You must be signed in to change notification settings - Fork 2
/
objtypes.txt
2018 lines (2018 loc) · 46.3 KB
/
objtypes.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
# 0x1 unused
0x2 ank1a
0x3 ank1b
0x4 ank2a
0x5 ank2b
# 0x6 - 0x9 unused
0xa kopeshfire combat
0xb Katanalight combat
0xc Bardichemortal combat
# 0xd unused
0xe [n/a] lighting
0xf [n/a] lighting
# 0x10 - 0x21 unused
0x22 [n/a] lighting
0x23 [n/a] lighting
# 0x24 - 0x3a unused
0x3b [n/a] lighting
# 0x3c - 0x4b unused
0x4c pedraenco encolher
# 0x4d - 0x5b unused
0x5c [n/a] lighting
# 0x5d unused
0x5e [n/a] lighting
# 0x5f - 0x82 unused
0x83 [n/a] lighting
# 0x84 - 0x8c unused
0x8d [n/a] lighting
# 0x8e - 0x97 unused
0x98 [n/a] lighting
0x99 [n/a] lighting
# 0x9a - 0xb8 unused
0xb9 [n/a] lighting
0xba [n/a] lighting
0xbb [n/a] lighting
0xbc [n/a] lighting
# 0xbd - 0xc9 unused
0xca [n/a] lighting
0xcb [n/a] lighting
# 0xcc - 0xe9 unused
0xea BlueThickStoneSecretSSE doors
# 0xeb unused
0xec BlueThickStoneSecretSNW doors
# 0xed unused
0xee BlueThickStoneSecretSNE doors
# 0xef unused
0xf0 BlueThickStoneSecretESE doors
0xf1 BlueThickStoneSecretSSW doors
0xf2 BlueThickStoneSecretENE doors
# 0xf3 unused
0xf4 BlueThickStoneSecretESW doors
# 0xf5 unused
0xf6 BlueThickStoneSecretENW doors
# 0xf7 - 0xfb unused
0xfc [n/a] lighting
# 0xfd - 0x101 unused
0x102 [n/a] lighting
# 0x103 - 0x107 unused
0x108 [n/a] lighting
# 0x109 - 0x122 unused
0x123 Lugares pedra
0x124 pvp pedra
0x125 pvp2 pedra
# 0x126 - 0x139 unused
0x13a [n/a] lighting
0x13b [n/a] lighting
# 0x13c - 0x153 unused
0x154 [n/a] lighting
0x155 [n/a] lighting
0x156 [n/a] lighting
0x157 [n/a] lighting
# 0x158 - 0x15b unused
0x15c [n/a] lighting
0x15d [n/a] lighting
# 0x15e - 0x162 unused
0x163 [n/a] lighting
# 0x164 - 0x1c3 unused
0x1c4 [n/a] lighting
0x1c5 [n/a] lighting
# 0x1c6 - 0x1d2 unused
0x1d3 [n/a] lighting
# 0x1d4 - 0x1f6 unused
0x1f7 wallofstone
# 0x1f8 - 0x206 unused
0x207 [n/a] lighting
0x208 [n/a] lighting
0x209 [n/a] lighting
# 0x20a - 0x23c unused
0x23d pedragelo gelo
# 0x23e - 0x251 unused
0x252 [n/a] lighting
0x253 [n/a] lighting
0x254 [n/a] lighting
# 0x255 - 0x294 unused
0x295 [n/a] lighting
# 0x296 - 0x29a unused
0x29b [n/a] lighting
# 0x29c - 0x2ab unused
0x2ac [n/a] lighting
# 0x2ad - 0x315 unused
0x316 DarkThinStoneSecretSSE doors
# 0x317 unused
0x318 DarkThinStoneSecretSNW doors
# 0x319 unused
0x31a DarkThinStoneSecretSNE doors
# 0x31b unused
0x31c DarkThinStoneSecretESE doors
0x31d DarkThinStoneSecretSSW doors
0x31e DarkThinStoneSecretENE doors
# 0x31f unused
0x320 DarkThinStoneSecretESW doors
# 0x321 unused
0x322 DarkThinStoneSecretENW doors
# 0x323 unused
0x324 DarkThickStoneSecretSSW doors
# 0x325 unused
0x326 DarkThickStoneSecretSSE doors
# 0x327 unused
0x328 DarkThickStoneSecretSNW doors
# 0x329 unused
0x32a DarkThickStoneSecretSNE doors
# 0x32b unused
0x32c DarkThickStoneSecretESE doors
# 0x32d unused
0x32e DarkThickStoneSecretENE doors
# 0x32f unused
0x330 DarkThickStoneSecretESW doors
# 0x331 unused
0x332 DarkThickStoneSecretENW doors
# 0x333 unused
0x334 DarkWoodSecretSSW doors
# 0x335 unused
0x336 DarkWoodSecretSSE doors
# 0x337 unused
0x338 DarkWoodSecretSNW doors
# 0x339 unused
0x33a DarkWoodSecretSNE doors
# 0x33b unused
0x33c DarkWoodSecretESE doors
# 0x33d unused
0x33e DarkWoodSecretENE doors
# 0x33f unused
0x340 DarkWoodSecretESW doors
# 0x341 unused
0x342 DarkWoodSecretENW doors
# 0x343 unused
0x344 LightWoodSecretSSW doors
# 0x345 unused
0x346 LightWoodSecretSSE doors
# 0x347 unused
0x348 LightWoodSecretSNW doors
# 0x349 unused
0x34a LightWoodSecretSNE doors
# 0x34b unused
0x34c LightWoodSecretESE doors
# 0x34d unused
0x34e LightWoodSecretENE doors
# 0x34f unused
0x350 LightWoodSecretESW doors
# 0x351 unused
0x352 LightWoodSecretENW doors
# 0x353 unused
0x354 LightThickStoneSecretSSW doors
# 0x355 unused
0x356 LightThickStoneSecretSSE doors
# 0x357 unused
0x358 LightThickStoneSecretSNW doors
# 0x359 unused
0x35a LightThickStoneSecretSNE doors
# 0x35b unused
0x35c LightThickStoneSecretESE doors
# 0x35d unused
0x35e LightThickStoneSecretENE doors
# 0x35f unused
0x360 LightThickStoneSecretESW doors
# 0x361 unused
0x362 LightThickStoneSecretENW doors
# 0x363 - 0x3dc unused
0x3dd [n/a] lighting
0x3de [n/a] lighting
# 0x3df - 0x461 unused
0x462 [n/a] lighting
# 0x463 - 0x46a unused
0x46b [n/a] lighting
# 0x46c - 0x474 unused
0x475 [n/a] lighting
# 0x476 - 0x47a unused
0x47b [n/a] lighting
# 0x47c - 0x554 unused
0x555 metrotecidogelo tailoring
0x556 kitcosturatecido tailoring
# 0x557 unused
0x558 metrotecidoblack tailoring
0x559 metrotecidowith tailoring
# 0x55a - 0x55f unused
0x560 tintabg tailoring
0x561 tintaan tailoring
# 0x562 - 0x674 unused
0x675 [n/a] doors
# 0x676 unused
0x677 [n/a] doors
# 0x678 - 0x67a unused
0x67b [n/a] doors
# 0x67c unused
0x67d [n/a] doors
# 0x67e unused
0x67f [n/a] doors
# 0x680 - 0x684 unused
0x685 [n/a] doors
# 0x686 unused
0x687 [n/a] doors
# 0x688 - 0x68c unused
0x68d [n/a] doors
# 0x68e unused
0x68f [n/a] doors
# 0x690 - 0x694 unused
0x695 [n/a] doors
# 0x696 unused
0x697 [n/a] doors
# 0x698 - 0x69c unused
0x69d [n/a] doors
# 0x69e unused
0x69f [n/a] doors
# 0x6a0 - 0x6a4 unused
0x6a5 [n/a] doors
# 0x6a6 unused
0x6a7 [n/a] doors
# 0x6a8 unused
0x6a9 [n/a] doors
# 0x6aa unused
0x6ab [n/a] doors
# 0x6ac unused
0x6ad [n/a] doors
# 0x6ae unused
0x6af [n/a] doors
# 0x6b0 - 0x6b4 unused
0x6b5 [n/a] doors
# 0x6b6 unused
0x6b7 [n/a] doors
# 0x6b8 - 0x6bc unused
0x6bd [n/a] doors
# 0x6be unused
0x6bf [n/a] doors
# 0x6c0 - 0x6c4 unused
0x6c5 [n/a] doors
# 0x6c6 unused
0x6c7 [n/a] doors
# 0x6c8 - 0x6cc unused
0x6cd [n/a] doors
# 0x6ce unused
0x6cf [n/a] doors
# 0x6d0 - 0x6d4 unused
0x6d5 [n/a] doors
# 0x6d6 unused
0x6d7 [n/a] doors
# 0x6d8 - 0x6dc unused
0x6dd [n/a] doors
# 0x6de unused
0x6df [n/a] doors
# 0x6e0 - 0x6e4 unused
0x6e5 [n/a] doors
# 0x6e6 unused
0x6e7 [n/a] doors
# 0x6e8 - 0x6ec unused
0x6ed [n/a] doors
# 0x6ee unused
0x6ef [n/a] doors
# 0x6f0 - 0x74c unused
0x74d encolher encolher
# 0x74e - 0x75c unused
0x75d retirar encolher
# 0x75e - 0x824 unused
0x825 [n/a] doors
0x826 [n/a] doors
0x827 [n/a] doors
# 0x828 unused
0x829 [n/a] doors
0x82a [n/a] doors
# 0x82b unused
0x82c [n/a] doors
0x82d [n/a] doors
# 0x82e unused
0x82f [n/a] doors
# 0x830 - 0x838 unused
0x839 [n/a] doors
# 0x83a unused
0x83b [n/a] doors
# 0x83c unused
0x83d [n/a] doors
# 0x83e unused
0x83f [n/a] doors
# 0x840 unused
0x841 [n/a] doors
# 0x842 unused
0x843 [n/a] doors
# 0x844 unused
0x845 [n/a] doors
# 0x846 unused
0x847 [n/a] doors
# 0x848 - 0x84b unused
0x84c [n/a] doors
0x84d [n/a] doors
# 0x84e unused
0x84f [n/a] doors
# 0x850 unused
0x851 [n/a] doors
0x852 [n/a] doors
# 0x853 unused
0x854 [n/a] doors
# 0x855 - 0x856 unused
0x857 [n/a] doors
# 0x858 unused
0x859 [n/a] doors
# 0x85a - 0x865 unused
0x866 [n/a] doors
# 0x867 unused
0x868 [n/a] doors
# 0x869 unused
0x86a [n/a] doors
# 0x86b unused
0x86c [n/a] doors
# 0x86d unused
0x86e [n/a] doors
# 0x86f unused
0x870 [n/a] doors
# 0x871 unused
0x872 [n/a] doors
# 0x873 unused
0x874 [n/a] doors
# 0x875 - 0x92a unused
0x92b [n/a] lighting
# 0x92c - 0x92f unused
0x930 [n/a] lighting
# 0x931 - 0x936 unused
0x937 [n/a] lighting
# 0x938 - 0x944 unused
0x945 [n/a] lighting
# 0x946 - 0x952 unused
0x953 [n/a] lighting
# 0x954 - 0x960 unused
0x961 [n/a] lighting
# 0x962 - 0x975 unused
0x976 SlabOfBacon cooking
0x977 SlabOfBacon2 cooking
0x978 baconstrip1 cooking
0x979 baconstrip2 cooking
0x97a RawFishSteak cooking
0x97b CookedFishSteak cooking
0x97c wedgeOfCheese2 cooking
0x97d wedgeOfCheese cooking
0x97e WheelOfCheese cooking
0x97f fryingpan cooking
# 0x980 - 0x98b unused
0x98c frenchbread cooking
# 0x98d - 0x993 unused
0x994 Pear2 cooking
# 0x995 - 0x999 unused
0x99a goblet tinkering
0x99b Bottleofliquor drinking
# 0x99c - 0x99e unused
0x99f Bottleofale drinking
# 0x9a0 - 0x9a6 unused
0x9a7 emptypitcher cooking
# 0x9a8 unused
0x9a9 SmallCrate carpentry
0x9aa WoodenBox carpentry
# 0x9ab - 0x9b4 unused
0x9b5 egg cooking
0x9b6 friedeggs cooking
0x9b7 cookedbird2 cooking
0x9b8 CookedBird cooking
0x9b9 RawBird cooking
0x9ba RawBird2 cooking
# 0x9bb - 0x9bf unused
0x9c0 sausage cooking
0x9c1 sausage2 cooking
# 0x9c2 - 0x9c6 unused
0x9c7 Bottleofwine drinking
# 0x9c8 unused
0x9c9 ham cooking
# 0x9ca - 0x9cb unused
0x9cc fish1 fishing
0x9cd fish2 fishing
0x9ce fish3 fishing
0x9cf fish4 fishing
0x9d0 apple cooking
0x9d1 grapes1 cooking
0x9d2 peach2 cooking
0x9d3 ham2 cooking
# 0x9d4 - 0x9d6 unused
0x9d7 plate tinkering
# 0x9d8 - 0x9e8 unused
0x9e9 cake cooking
0x9ea muffin cooking
0x9eb triplemuffins cooking
0x9ec Honey cooking
# 0x9ed - 0x9ee unused
0x9ef mugofale drinking
# 0x9f0 unused
0x9f1 RawRibs cooking
0x9f2 CookedRibs cooking
# 0x9f3 unused
0x9f4 forkn tinkering
0x9f5 forkw tinkering
0x9f6 knifen tinkering
0x9f7 knifew tinkering
0x9f8 spoonn tinkering
0x9f9 spoonw tinkering
0x9fa doublemuffins cooking
0x9fb wallsconce3 lighting
# 0x9fc unused
0x9fd wallsconce4 lighting
# 0x9fe - 0x9ff unused
0xa00 wallsconce2 lighting
# 0xa01 unused
0xa02 wallsconce1 lighting
# 0xa03 - 0xa04 unused
0xa05 Torch5 lighting
# 0xa06 unused
0xa07 Torch6 lighting
# 0xa08 - 0xa09 unused
0xa0a Torch3 lighting
# 0xa0b unused
0xa0c Torch4 lighting
# 0xa0d - 0xa0e unused
0xa0f candle1 lighting
# 0xa10 - 0xa11 unused
0xa12 Torch2 lighting
# 0xa13 - 0xa14 unused
0xa15 lantern5 lighting
# 0xa16 - 0xa17 unused
0xa18 lantern6 lighting
# 0xa19 - 0xa21 unused
0xa22 lantern1 lighting
0xa23 lantern2 lighting
0xa24 lantern3 lighting
0xa25 lantern4 lighting
0xa26 candle4 lighting
0xa27 candelabra4 lighting
0xa28 candle2 lighting
0xa29 candelabra2 lighting
0xa2a Stool carpentry
# 0xa2b unused
0xa2c dresser carpentry
# 0xa2d - 0xa2f unused
0xa30 cherrydresser carpentry
# 0xa31 - 0xa33 unused
0xa34 dresser2 carpentry
# 0xa35 - 0xa37 unused
0xa38 cherrydresser2 carpentry
# 0xa39 - 0xa4c unused
0xa4d cherryarmoir carpentry
0xa4e BrownArmoire
0xa4f armoir carpentry
0xa50 CherryArmoire
0xa51 cherryarmoir2 carpentry
# 0xa52 unused
0xa53 armoir2 carpentry
# 0xa54 - 0xa96 unused
0xa97 bookshelf carpentry
0xa98 bookshelf2 carpentry
0xa99 bookshelf3 carpentry
0xa9a bookshelf4 carpentry
0xa9b bookshelf5 carpentry
0xa9c bookshelf6 carpentry
0xa9d shelf carpentry
0xa9e shelf2 carpentry
0xa9f spawnshelf
# 0xaa0 - 0xb19 unused
0xb1a candle3 lighting
# 0xb1b - 0xb1c unused
0xb1d candelabra3 lighting
# 0xb1e - 0xb1f unused
0xb20 lamppost1 lighting
0xb21 lamppost2 lighting
0xb22 lamppost3 lighting
0xb23 lamppost4 lighting
0xb24 lamppost5 lighting
0xb25 lamppost6 lighting
0xb26 candelabra1 lighting
# 0xb27 - 0xb2b unused
0xb2c Bench carpentry
0xb2d Bench2 carpentry
0xb2e woodthrone carpentry
0xb2f woodthrone2 carpentry
# 0xb30 - 0xb31 unused
0xb32 throne carpentry
0xb33 throne2 carpentry
# 0xb34 - 0xb39 unused
0xb3a smallcounter carpentry
# 0xb3b - 0xb3e unused
0xb3f largecounter carpentry
# 0xb40 - 0xb44 unused
0xb45 lvase
0xb46 smvase
0xb47 lvase2
0xb48 smvase2
# 0xb49 - 0xb4d unused
0xb4e vesperchair2 carpentry
0xb4f vesperchair carpentry
0xb50 vesperchair3 carpentry
0xb51 vesperchair4 carpentry
# 0xb52 unused
0xb53 Cushioned Chair carpentry
# 0xb54 - 0xb55 unused
0xb56 Chair carpentry
0xb57 Chair2 carpentry
0xb58 Chair3 carpentry
0xb59 Chair4 carpentry
0xb5a poorchair2 carpentry
0xb5b poorchair4 carpentry
0xb5c poorchair3 carpentry
0xb5d poorchair carpentry
0xb5e Stool2 carpentry
# 0xb5f - 0xb7b unused
0xb7c table carpentry
0xb7d yewtable carpentry
# 0xb7e - 0xb8e unused
0xb8f table2 carpentry
0xb90 yewtable2 carpentry
# 0xb91 - 0xbce unused
0xbcf woodensign1 housing
0xbd0 woodensign housing
0xbd1 brasssign1 housing
0xbd2 brasssign housing
# 0xbd3 - 0xc5b unused
0xc5c watermelon1 cooking
0xc5d watermelon2 cooking
# 0xc5e - 0xc63 unused
0xc64 yellowgourd1 cooking
0xc65 yellowgourd2 cooking
0xc66 greengourd1 cooking
0xc67 greengourd2 cooking
# 0xc68 - 0xc69 unused
0xc6a pumpkin cooking
0xc6b pumpkin2 cooking
0xc6c pumpkin3 cooking
0xc6d onion cooking
0xc6e onion2 cooking
# 0xc6f unused
0xc70 lettuce1 cooking
0xc71 lettuce2 cooking
0xc72 squash1 cooking
0xc73 squash2 cooking
0xc74 honeydew1 cooking
0xc75 honeydew2 cooking
# 0xc76 unused
0xc77 carrots cooking
0xc78 carrot cooking
0xc79 canteloupe1 cooking
0xc7a canteloupe2 cooking
0xc7b cabbage1 cooking
0xc7c cabbage2 cooking
# 0xc7d - 0xc81 unused
0xc82 corn cooking
# 0xc83 - 0xd19 unused
0xd1a grapes2 cooking
# 0xd1b - 0xd39 unused
0xd3a edibleturnip cooking
# 0xd3b - 0xdbe unused
0xdbf FishingPole fishing
# 0xdc0 - 0xdd5 unused
0xdd6 fish5 fishing
0xdd7 fish6 fishing
0xdd8 fish7 fishing
0xdd9 fish8 fishing
0xdda redmoongate
# 0xddb - 0xde0 unused
0xde1 kindling camping
0xde2 kindling2 camping
0xde3 campfire lighting
# 0xde4 - 0xdef unused
0xdf0 BlackStaff combat
# 0xdf1 unused
0xdf2 magicwand1 combat
0xdf3 magicwand2 combat
0xdf4 magicwand3 combat
0xdf5 magicwand4 combat
# 0xdf6 - 0xe16 unused
0xe17 Cards
# 0xe18 - 0xe1c unused
0xe1d bolala herding
# 0xe1e unused
0xe1f yarn tailoring
0xe20 bandagessuja healing
0xe21 bandages healing
# 0xe22 - 0xe26 unused
0xe27 hairdye barber
# 0xe28 - 0xe2c unused
0xe2d Crystalball1 lighting
0xe2e Crystalball2 lighting
# 0xe2f - 0xe30 unused
0xe31 brazier1 lighting
# 0xe32 - 0xe33 unused
0xe34 blankscroll
# 0xe35 - 0xe3b unused
0xe3c LargeCrate carpentry
# 0xe3d - 0xe3e unused
0xe3f MediumCrate carpentry
0xe40 MetalChest
# 0xe41 unused
0xe42 WoodenChest carpentry
0xe43 TentChest carpentry
# 0xe44 - 0xe45 unused
0xe46 emptyjars1 decorations
# 0xe47 - 0xe74 unused
0xe75 Backpack
0xe76 Bag
0xe77 Barrel carpentry
# 0xe78 unused
0xe79 Pouch
# 0xe7a - 0xe7b unused
0xe7c SilverChest
# 0xe7d - 0xe7e unused
0xe7f keg carpentry
0xe80 strongBox carpentry
0xe81 ShepherdsCrook combat
# 0xe82 - 0xe84 unused
0xe85 Pickaxe combat
# 0xe86 unused
0xe87 Pitchfork combat
# 0xe88 - 0xe89 unused
0xe8a Quarterstaff combat
# 0xe8b - 0xe96 unused
0xe97 SilverChest housing
# 0xe98 - 0xe9a unused
0xe9b Mortar alchemy
0xe9c Drum musicianship
0xe9d Tambourine musicianship
0xe9e Tambourine2 musicianship
0xe9f painting4 fishing
0xea0 painting5 fishing
# 0xea1 - 0xea2 unused
0xea3 painting6 fishing
0xea4 paiting1 fishing
# 0xea5 unused
0xea6 painting7 fishing
0xea7 painting3 fishing
0xea8 paiting2 fishing
# 0xea9 - 0xeb0 unused
0xeb1 standingharp musicianship
0xeb2 harp musicianship
0xeb3 lute musicianship
0xeb4 lute2 musicianship
# 0xeb5 - 0xec1 unused
0xec2 Cleaver combat
# 0xec3 unused
0xec4 SkinningKnife combat
# 0xec5 unused
0xec6 dressform decorations
# 0xec7 - 0xec8 unused
0xec9 painting9 fishing
0xeca bones9
0xecb bones8
0xecc bones7
0xecd bones6
0xece bones5
0xecf bones4
0xed0 bones3
0xed1 bones2
0xed2 bones
# 0xed3 - 0xee2 unused
0xee3 spiderweb2 decorations
0xee4 spiderweb1 decorations
# 0xee5 - 0xee6 unused
0xee7 painting8 fishing
# 0xee8 - 0xeec unused
0xeed GoldCoin blacksmithy
# 0xeee - 0xef9 unused
0xefa Spellbook
# 0xefb - 0xefe unused
0xeff hairdye2 barber
# 0xf00 - 0xf0d unused
0xf0e EmptyBottle alchemy
0xf0f starsapphire
0xf10 emerald
0xf11 sapphire
# 0xf12 unused
0xf13 ruby
# 0xf14 unused
0xf15 citrine
0xf16 amethyst
# 0xf17 unused
0xf18 tourmaline
# 0xf19 - 0xf24 unused
0xf25 amber
# 0xf26 - 0xf2f unused
0xf30 diamond
# 0xf31 - 0xf38 unused
0xf39 Shovel mining
# 0xf3a - 0xf3e unused
0xf3f arrow
# 0xf40 - 0xf42 unused
0xf43 Hatchet combat
# 0xf44 unused
0xf45 ExecutionersAxe combat
# 0xf46 unused
0xf47 BattleAxe combat
# 0xf48 unused
0xf49 Axe combat
# 0xf4a unused
0xf4b DoubleAxe combat
# 0xf4c - 0xf4d unused
0xf4e Bardiche combat
0xf4f Crossbow combat
# 0xf50 unused
0xf51 Dagger combat
# 0xf52 - 0xf5b unused
0xf5c Mace combat
# 0xf5d unused
0xf5e BroadSword combat
# 0xf5f unused
0xf60 longsword combat
# 0xf61 - 0xf62 unused
0xf63 Spear combat
0xf64 Torch1 lighting
# 0xf65 unused
0xf66 easel1 decorations
# 0xf67 unused
0xf68 easel2 decorations
# 0xf69 - 0xf6b unused
0xf6c bluemoongate
# 0xf6d - 0xf77 unused
0xf78 BatWing
0xf79 BlackMoor
0xf7a BlackPearl
0xf7b BloodMoss
0xf7c BloodSpawn
0xf7d BloodReagent
0xf7e Bone
0xf7f Brimstone
0xf80 daemonbone
0xf81 FertileDirt
0xf82 DragonBlood
0xf83 ExecutionersCap
0xf84 Garlic
0xf85 Ginseng
0xf86 MandrakeRoot
0xf87 EyeOfNewt
0xf88 NightShade
0xf89 Obsidian
0xf8a PigIron
0xf8b Pumice
0xf8c SulphurousAsh
0xf8d SpiderSilk
0xf8e SerpentScale
0xf8f VolcanicAsh
0xf90 Deadwood
0xf91 WormHeart
# 0xf92 - 0xf94 unused
0xf95 bolt1 tailoring
0xf96 bolt2 tailoring
0xf97 bolt3 tailoring
0xf98 bolt4 tailoring
0xf99 bolt5 tailoring
0xf9a bolt6 tailoring
0xf9b bolt7 tailoring
0xf9c bolt8 tailoring
0xf9d Kitcostura tailoring
0xf9e Scissors tailoring
# 0xf9f unused
0xfa0 Thread1 tailoring
0xfa1 Thread2 tailoring
# 0xfa2 - 0xfa8 unused
0xfa9 Tintas tailoring
# 0xfaa unused
0xfab TuboTintas tailoring
0xfac firepit lighting
# 0xfad - 0xfb0 unused
0xfb1 smallforge mining
# 0xfb2 - 0xfb3 unused
0xfb4 sledgehammer combat
0xfb5 sledgehammer2 combat
# 0xfb6 - 0xfba unused
0xfbb tongs blacksmithy
0xfbc tongs2 blacksmithy
# 0xfbd - 0xfe5 unused
0xfe6 [n/a] carpentry
0xfe7 [n/a] carpentry
0xfe8 [n/a] carpentry
0xfe9 [n/a] carpentry
0xfea [n/a] carpentry
0xfeb [n/a] carpentry
0xfec [n/a] carpentry
0xfed [n/a] carpentry
0xfee [n/a] carpentry
0xfef book1 sysbook
0xff0 book2 sysbook
0xff1 book3 sysbook
0xff2 book4 sysbook
0xff3 smallopenbook sysbook
0xff4 bigopenbook sysbook
# 0xff5 - 0xfff unused
0x1000 pewter mug tinkering
# 0x1001 - 0x1009 unused
0x100a butte1 training
0x100b butte2 training
# 0x100c - 0x100d unused
0x100e copperkey
0x100f goldkey
0x1010 ironkey
0x1011 keyring
0x1012 magickey
0x1013 rustykey
# 0x1014 - 0x1027 unused
0x1028 Dovetailsaw carpentry
# 0x1029 unused
0x102a Hammer carpentry
# 0x102b unused
0x102c mouldingplane carpentry
# 0x102d - 0x102f unused
0x1030 Jointingplane carpentry
# 0x1031 unused
0x1032 Smoothingplane carpentry
# 0x1033 unused
0x1034 Saw carpentry
0x1035 Saw2 carpentry
# 0x1036 - 0x1038 unused
0x1039 Flour cooking
0x103a OpenFlour cooking
0x103b bread cooking
0x103c bread2 cooking
0x103d Dough cooking
# 0x103e unused
0x103f CookieMix cooking
0x1040 pizza cooking
0x1041 pie cooking
0x1042 upie cooking
0x1043 rollingpin cooking
0x1044 spam cooking
0x1045 Flour2 cooking
0x1046 OpenFlour2 cooking
0x1047 globe tinkering
# 0x1048 - 0x104b unused
0x104c clock tinkering
0x104d Clockframe tinkering
0x104e Clockframe2 tinkering
# 0x104f - 0x1050 unused
0x1051 Axleandgears tinkering
# 0x1052 unused
0x1053 Gears tinkering
# 0x1054 unused
0x1055 Hinge tinkering
# 0x1056 unused
0x1057 Sextant
# 0x1058 unused
0x1059 Sextantparts tinkering
# 0x105a - 0x1066 unused
0x1067 cutleather
# 0x1068 - 0x106f unused
0x1070 trainingdummy training
# 0x1071 - 0x1073 unused
0x1074 trainingdummy2 training
# 0x1075 - 0x1077 unused
0x1078 hides
0x1079 hides2
# 0x107a - 0x1082 unused
0x1083 uncookedpizza cooking
# 0x1084 unused
0x1085 silvernecklace tinkering
0x1086 bracelet tinkering
0x1087 earrings tinkering
0x1088 roundnecklace tinkering
0x1089 longnecklace tinkering
0x108a ring tinkering
# 0x108b - 0x10e3 unused
0x10e4 drawknife carpentry
0x10e5 Froe carpentry
0x10e6 inshave carpentry
0x10e7 Scorp carpentry
# 0x10e8 - 0x10f4 unused
0x10f5 flametrap1 traps
# 0x10f6 - 0x1102 unused
0x1103 sawtrap1 traps
# 0x1104 - 0x1107 unused
0x1108 wallspikes1 traps
# 0x1109 - 0x1111 unused
0x1112 respmadeira lumberjacking
0x1113 respminerio mining
# 0x1114 - 0x1115 unused
0x1116 sawtrap2 traps
# 0x1117 - 0x111a unused
0x111b wallspikes2 traps
# 0x111c - 0x112a unused
0x112b darttrap1 traps
# 0x112c - 0x112e unused
0x112f drattrap2 traps
# 0x1130 - 0x1140 unused
0x1141 axetrap1 traps
# 0x1142 - 0x114a unused
0x114b axetrap2 traps
# 0x114c - 0x1192 unused
0x1193 axetrap3 traps
# 0x1194 - 0x1199 unused
0x119a floorspikes2 traps
# 0x119b - 0x119f unused
0x11a0 floorspikes1 traps
# 0x11a1 - 0x11ab unused
0x11ac sawtrap3 traps
# 0x11ad - 0x11b0 unused
0x11b1 sawtrap4 traps
# 0x11b2 - 0x1200 unused
0x1201 stonetable
0x1202 stonetable2
0x1203 stonetable3
0x1204 stonetable4
0x1205 stonetable5
0x1206 stonetable6
0x1207 stonebench
0x1208 stonebench2
0x1209 stonebench3
0x120a stonebench4
# 0x120b - 0x120d unused
0x120e [n/a] carpentry
0x120f [n/a] carpentry
0x1210 [n/a] carpentry
0x1211 [n/a] carpentry
0x1212 [n/a] carpentry
0x1213 [n/a] carpentry
0x1214 [n/a] carpentry
0x1215 [n/a] carpentry
0x1216 [n/a] carpentry
# 0x1217 unused
0x1218 stonechair
0x1219 stonechai2
0x121a stonechai3
0x121b stonechair4
# 0x121c - 0x122c unused
0x122d blood
# 0x122e - 0x1371 unused
0x1372 Brush
# 0x1373 - 0x1396 unused
0x1397 pillow fishing
# 0x1398 - 0x13a3 unused
0x13a4 pillow1 fishing
0x13a5 pillow2 fishing
0x13a6 pillow3 fishing
0x13a7 pillow4 fishing
0x13a8 pillow5 fishing
0x13a9 pillow6 fishing
# 0x13aa unused
0x13ab pillow8 fishing
0x13ac pillow9 fishing
0x13ad pillow10 fishing
0x13ae pillow11 fishing
0x13af WarAxe combat
# 0x13b0 - 0x13b1 unused
0x13b2 Bow combat
0x13b3 Club combat
# 0x13b4 unused
0x13b5 Scimitar combat
# 0x13b6 - 0x13b8 unused
0x13b9 VikingSword combat
# 0x13ba unused
0x13bb ChainmailCoif combat
# 0x13bc - 0x13bd unused
0x13be ChainmailLeggings combat
0x13bf ChainmailTunic combat
0x13c0 ChainmailCoif2 combat
# 0x13c1 - 0x13c2 unused
0x13c3 ChainmailLeggings2 combat
0x13c4 ChainmailTunic2 combat
# 0x13c5 unused
0x13c6 LeatherGloves combat
0x13c7 LeatherGorget combat
# 0x13c8 - 0x13ca unused
0x13cb LeatherLeggings combat
0x13cc LeatherTunic combat
0x13cd LeatherSleeves combat
# 0x13ce - 0x13d2 unused
0x13d3 LeatherTunic2 combat
0x13d4 StuddedSleeves combat
0x13d5 StuddedGloves combat
0x13d6 StuddedGorget combat
# 0x13d7 - 0x13d9 unused
0x13da StuddedLeggings combat
0x13db StuddedTunic combat
# 0x13dc - 0x13e2 unused
0x13e3 smithhammer combat
0x13e4 smithyhammer2 combat
# 0x13e5 - 0x13ea unused
0x13eb luvamalha combat
0x13ec RingmailTunic combat
0x13ed RingmailTunic2 combat
0x13ee RingmailSleeves combat
0x13ef RingmailSleeves2 combat
0x13f0 RingmailLeggings combat
0x13f1 RingmailLeggings2 combat
0x13f2 RingmailGloves combat
0x13f3 capuzloriga combat
# 0x13f4 - 0x13f5 unused
0x13f6 ButcherKnife combat
# 0x13f7 - 0x13f8 unused
0x13f9 GnarledStaff combat
0x13fa LargeBattleAxe combat
# 0x13fb - 0x13fc unused
0x13fd HeavyCrossbow combat
0x13fe Katana combat
# 0x13ff - 0x1400 unused
0x1401 Kryss combat
0x1402 ShortSpear combat