-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathitem_data.go
1057 lines (1051 loc) · 66.7 KB
/
item_data.go
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
package d2prox
type ItemType struct {
Name string
Code string
Category string
Width int
Height int
Stackable int
Useable int
Throwable int
ItemLevel int // 1=normal, 2=exceptional, 3=elite
UnusedFlags int
Flags int
Flags2 int
Quality int
}
func init() {
// make code -> type mapping
for _, item := range ItemTypeList {
ItemTypes[item.Code] = item
}
}
var ItemTypes = map[string]*ItemType{}
var ItemTypeList = []*ItemType{
&ItemType{"Cap", "cap", "Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 1},
&ItemType{"Skull Cap", "skp", "Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 5},
&ItemType{"Helm", "hlm", "Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 11},
&ItemType{"Full Helm", "fhl", "Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 15},
&ItemType{"Great Helm", "ghm", "Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 23},
&ItemType{"Crown", "crn", "Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 29},
&ItemType{"Mask", "msk", "Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 19},
&ItemType{"Quilted Armor", "qui", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 1},
&ItemType{"Leather Armor", "lea", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 3},
&ItemType{"Hard Leather Armor", "hla", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 5},
&ItemType{"Studded Leather", "stu", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 8},
&ItemType{"Ring Mail", "rng", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 11},
&ItemType{"Scale Mail", "scl", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 13},
&ItemType{"Chain Mail", "chn", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 15},
&ItemType{"Breast Plate", "brs", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 18},
&ItemType{"Splint Mail", "spl", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 20},
&ItemType{"Plate Mail", "plt", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Field Plate", "fld", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 28},
&ItemType{"Gothic Plate", "gth", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 32},
&ItemType{"Full Plate Mail", "ful", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 37},
&ItemType{"Ancient Armor", "aar", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 40},
&ItemType{"Light Plate", "ltp", "Armor", 2, 3, 0, 0, 0, 1, 0, 0, 0, 35},
&ItemType{"Buckler", "buc", "Shield", 2, 2, 0, 0, 0, 1, 0, 0, 0, 1},
&ItemType{"Small Shield", "sml", "Shield", 2, 2, 0, 0, 0, 1, 0, 0, 0, 5},
&ItemType{"Large Shield", "lrg", "Shield", 2, 3, 0, 0, 0, 1, 0, 0, 0, 11},
&ItemType{"Kite Shield", "kit", "Shield", 2, 3, 0, 0, 0, 1, 0, 0, 0, 15},
&ItemType{"Tower Shield", "tow", "Shield", 2, 3, 0, 0, 0, 1, 0, 0, 0, 22},
&ItemType{"Gothic Shield", "gts", "Shield", 2, 4, 0, 0, 0, 1, 0, 0, 0, 30},
&ItemType{"Leather Gloves", "lgl", "Gloves", 2, 2, 0, 0, 0, 1, 0, 0, 0, 3},
&ItemType{"Heavy Gloves", "vgl", "Gloves", 2, 2, 0, 0, 0, 1, 0, 0, 0, 7},
&ItemType{"Chain Gloves", "mgl", "Gloves", 2, 2, 0, 0, 0, 1, 0, 0, 0, 12},
&ItemType{"Light Gauntlets", "tgl", "Gloves", 2, 2, 0, 0, 0, 1, 0, 0, 0, 20},
&ItemType{"Gauntlets", "hgl", "Gloves", 2, 2, 0, 0, 0, 1, 0, 0, 0, 27},
&ItemType{"Boots", "lbt", "Boots", 2, 2, 0, 0, 0, 1, 0, 0, 0, 3},
&ItemType{"Heavy Boots", "vbt", "Boots", 2, 2, 0, 0, 0, 1, 0, 0, 0, 7},
&ItemType{"Chain Boots", "mbt", "Boots", 2, 2, 0, 0, 0, 1, 0, 0, 0, 12},
&ItemType{"Light Plated Boots", "tbt", "Boots", 2, 2, 0, 0, 0, 1, 0, 0, 0, 20},
&ItemType{"Greaves", "hbt", "Boots", 2, 2, 0, 0, 0, 1, 0, 0, 0, 27},
&ItemType{"Sash", "lbl", "Belt", 2, 1, 0, 0, 0, 1, 0, 0, 0, 3},
&ItemType{"Light Belt", "vbl", "Belt", 2, 1, 0, 0, 0, 1, 0, 0, 0, 7},
&ItemType{"Belt", "mbl", "Belt", 2, 1, 0, 0, 0, 1, 0, 0, 0, 12},
&ItemType{"Heavy Belt", "tbl", "Belt", 2, 1, 0, 0, 0, 1, 0, 0, 0, 20},
&ItemType{"Plated Belt", "hbl", "Belt", 2, 1, 0, 0, 0, 1, 0, 0, 0, 27},
&ItemType{"Bone Helm", "bhm", "Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 22},
&ItemType{"Bone Shield", "bsh", "Shield", 2, 3, 0, 0, 0, 1, 0, 0, 0, 19},
&ItemType{"Spiked Shield", "spk", "Shield", 2, 3, 0, 0, 0, 1, 0, 0, 0, 11},
&ItemType{"War Hat", "xap", "Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 34},
&ItemType{"Sallet", "xkp", "Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 37},
&ItemType{"Casque", "xlm", "Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 42},
&ItemType{"Basinet", "xhl", "Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 45},
&ItemType{"Winged Helm", "xhm", "Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 51},
&ItemType{"Grand Crown", "xrn", "Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 55},
&ItemType{"Death Mask", "xsk", "Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 48},
&ItemType{"Ghost Armor", "xui", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 34},
&ItemType{"Serpentskin Armor", "xea", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 36},
&ItemType{"Demonhide Armor", "xla", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 37},
&ItemType{"Trellised Armor", "xtu", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 40},
&ItemType{"Linked Mail", "xng", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 42},
&ItemType{"Tigulated Mail", "xcl", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 43},
&ItemType{"Mesh Armor", "xhn", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 45},
&ItemType{"Cuirass", "xrs", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 47},
&ItemType{"Russet Armor", "xpl", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 49},
&ItemType{"Templar Coat", "xlt", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 52},
&ItemType{"Sharktooth Armor", "xld", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 55},
&ItemType{"Embossed Plate", "xth", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 58},
&ItemType{"Chaos Armor", "xul", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 61},
&ItemType{"Ornate Plate", "xar", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 64},
&ItemType{"Mage Plate", "xtp", "Armor", 2, 3, 0, 0, 0, 2, 0, 0, 0, 60},
&ItemType{"Defender", "xuc", "Shield", 2, 2, 0, 0, 0, 2, 0, 0, 0, 34},
&ItemType{"Round Shield", "xml", "Shield", 2, 2, 0, 0, 0, 2, 0, 0, 0, 37},
&ItemType{"Scutum", "xrg", "Shield", 2, 3, 0, 0, 0, 2, 0, 0, 0, 42},
&ItemType{"Dragon Shield", "xit", "Shield", 2, 3, 0, 0, 0, 2, 0, 0, 0, 45},
&ItemType{"Pavise", "xow", "Shield", 2, 3, 0, 0, 0, 2, 0, 0, 0, 50},
&ItemType{"Ancient Shield", "xts", "Shield", 2, 4, 0, 0, 0, 2, 0, 0, 0, 56},
&ItemType{"Demonhide Gloves", "xlg", "Gloves", 2, 2, 0, 0, 0, 2, 0, 0, 0, 33},
&ItemType{"Sharkskin Gloves", "xvg", "Gloves", 2, 2, 0, 0, 0, 2, 0, 0, 0, 39},
&ItemType{"Heavy Bracers", "xmg", "Gloves", 2, 2, 0, 0, 0, 2, 0, 0, 0, 43},
&ItemType{"Battle Gauntlets", "xtg", "Gloves", 2, 2, 0, 0, 0, 2, 0, 0, 0, 49},
&ItemType{"War Gauntlets", "xhg", "Gloves", 2, 2, 0, 0, 0, 2, 0, 0, 0, 54},
&ItemType{"Demonhide Boots", "xlb", "Boots", 2, 2, 0, 0, 0, 2, 0, 0, 0, 36},
&ItemType{"Sharkskin Boots", "xvb", "Boots", 2, 2, 0, 0, 0, 2, 0, 0, 0, 39},
&ItemType{"Mesh Boots", "xmb", "Boots", 2, 2, 0, 0, 0, 2, 0, 0, 0, 43},
&ItemType{"Battle Boots", "xtb", "Boots", 2, 2, 0, 0, 0, 2, 0, 0, 0, 49},
&ItemType{"War Boots", "xhb", "Boots", 2, 2, 0, 0, 0, 2, 0, 0, 0, 54},
&ItemType{"Demonhide Sash", "zlb", "Belt", 2, 1, 0, 0, 0, 2, 0, 0, 0, 36},
&ItemType{"Sharkskin Belt", "zvb", "Belt", 2, 1, 0, 0, 0, 2, 0, 0, 0, 39},
&ItemType{"Mesh Belt", "zmb", "Belt", 2, 1, 0, 0, 0, 2, 0, 0, 0, 43},
&ItemType{"Battle Belt", "ztb", "Belt", 2, 1, 0, 0, 0, 2, 0, 0, 0, 49},
&ItemType{"War Belt", "zhb", "Belt", 2, 1, 0, 0, 0, 2, 0, 0, 0, 54},
&ItemType{"Grim Helm", "xh9", "Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 50},
&ItemType{"Grim Shield", "xsh", "Shield", 2, 3, 0, 0, 0, 2, 0, 0, 0, 48},
&ItemType{"Barbed Shield", "xpk", "Shield", 2, 3, 0, 0, 0, 2, 0, 0, 0, 42},
&ItemType{"Wolf Head", "dr1", "Druid Pelt", 2, 2, 0, 0, 0, 1, 0, 0, 0, 4},
&ItemType{"Hawk Helm", "dr2", "Druid Pelt", 2, 2, 0, 0, 0, 1, 0, 0, 0, 8},
&ItemType{"Antlers", "dr3", "Druid Pelt", 2, 2, 0, 0, 0, 1, 0, 0, 0, 16},
&ItemType{"Falcon Mask", "dr4", "Druid Pelt", 2, 2, 0, 0, 0, 1, 0, 0, 0, 20},
&ItemType{"Spirit Mask", "dr5", "Druid Pelt", 2, 2, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Jawbone Cap", "ba1", "Barbarian Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 4},
&ItemType{"Fanged Helm", "ba2", "Barbarian Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 8},
&ItemType{"Horned Helm", "ba3", "Barbarian Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 16},
&ItemType{"Assault Helmet", "ba4", "Barbarian Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 20},
&ItemType{"Avenger Guard", "ba5", "Barbarian Helm", 2, 2, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Targe", "pa1", "Paladin Shield", 2, 2, 0, 0, 0, 1, 0, 0, 0, 4},
&ItemType{"Rondache", "pa2", "Paladin Shield", 2, 2, 0, 0, 0, 1, 0, 0, 0, 8},
&ItemType{"Heraldic Shield", "pa3", "Paladin Shield", 2, 4, 0, 0, 0, 1, 0, 0, 0, 16},
&ItemType{"Aerin Shield", "pa4", "Paladin Shield", 2, 4, 0, 0, 0, 1, 0, 0, 0, 20},
&ItemType{"Crown Shield", "pa5", "Paladin Shield", 2, 2, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Preserved Head", "ne1", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 1, 0, 0, 0, 4},
&ItemType{"Zombie Head", "ne2", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 1, 0, 0, 0, 8},
&ItemType{"Unraveller Head", "ne3", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 1, 0, 0, 0, 16},
&ItemType{"Gargoyle Head", "ne4", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 1, 0, 0, 0, 20},
&ItemType{"Demon Head", "ne5", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Circlet", "ci0", "Circlet", 2, 2, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Coronet", "ci1", "Circlet", 2, 2, 0, 0, 0, 2, 0, 0, 0, 52},
&ItemType{"Tiara", "ci2", "Circlet", 2, 2, 0, 0, 0, 3, 0, 0, 0, 70},
&ItemType{"Diadem", "ci3", "Circlet", 2, 2, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Shako", "uap", "Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 58},
&ItemType{"Hydraskull", "ukp", "Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 63},
&ItemType{"Armet", "ulm", "Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 68},
&ItemType{"Giant Conch", "uhl", "Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 54},
&ItemType{"Spired Helm", "uhm", "Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 79},
&ItemType{"Corona", "urn", "Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Demonhead", "usk", "Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 74},
&ItemType{"Dusk Shroud", "uui", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 65},
&ItemType{"Wyrmhide", "uea", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 67},
&ItemType{"Scarab Husk", "ula", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 68},
&ItemType{"Wire Fleece", "utu", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 70},
&ItemType{"Diamond Mail", "ung", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 72},
&ItemType{"Loricated Mail", "ucl", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 73},
&ItemType{"Boneweave", "uhn", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 62},
&ItemType{"Great Hauberk", "urs", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 75},
&ItemType{"Balrog Skin", "upl", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 76},
&ItemType{"Hellforge Plate", "ult", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 78},
&ItemType{"Kraken Shell", "uld", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 81},
&ItemType{"Lacquered Plate", "uth", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 82},
&ItemType{"Shadow Plate", "uul", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 83},
&ItemType{"Sacred Armor", "uar", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Archon Plate", "utp", "Armor", 2, 3, 0, 0, 0, 3, 0, 0, 0, 84},
&ItemType{"Heater", "uuc", "Shield", 2, 2, 0, 0, 0, 3, 0, 0, 0, 58},
&ItemType{"Luna", "uml", "Shield", 2, 2, 0, 0, 0, 3, 0, 0, 0, 61},
&ItemType{"Hyperion", "urg", "Shield", 2, 3, 0, 0, 0, 3, 0, 0, 0, 64},
&ItemType{"Monarch", "uit", "Shield", 2, 3, 0, 0, 0, 3, 0, 0, 0, 72},
&ItemType{"Aegis", "uow", "Shield", 2, 3, 0, 0, 0, 3, 0, 0, 0, 79},
&ItemType{"Ward", "uts", "Shield", 2, 4, 0, 0, 0, 3, 0, 0, 0, 84},
&ItemType{"Bramble Mitts", "ulg", "Gloves", 2, 2, 0, 0, 0, 3, 0, 0, 0, 57},
&ItemType{"Vampirebone Gloves", "uvg", "Gloves", 2, 2, 0, 0, 0, 3, 0, 0, 0, 63},
&ItemType{"Vambraces", "umg", "Gloves", 2, 2, 0, 0, 0, 3, 0, 0, 0, 69},
&ItemType{"Crusader Gauntlets", "utg", "Gloves", 2, 2, 0, 0, 0, 3, 0, 0, 0, 76},
&ItemType{"Ogre Gauntlets", "uhg", "Gloves", 2, 2, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Wyrmhide Boots", "ulb", "Boots", 2, 2, 0, 0, 0, 3, 0, 0, 0, 60},
&ItemType{"Scarabshell Boots", "uvb", "Boots", 2, 2, 0, 0, 0, 3, 0, 0, 0, 66},
&ItemType{"Boneweave Boots", "umb", "Boots", 2, 2, 0, 0, 0, 3, 0, 0, 0, 72},
&ItemType{"Mirrored Boots", "utb", "Boots", 2, 2, 0, 0, 0, 3, 0, 0, 0, 81},
&ItemType{"Myrmidon Greaves", "uhb", "Boots", 2, 2, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Spiderweb Sash", "ulc", "Belt", 2, 1, 0, 0, 0, 3, 0, 0, 0, 61},
&ItemType{"Vampirefang Belt", "uvc", "Belt", 2, 1, 0, 0, 0, 3, 0, 0, 0, 68},
&ItemType{"Mithril Coil", "umc", "Belt", 2, 1, 0, 0, 0, 3, 0, 0, 0, 75},
&ItemType{"Troll Belt", "utc", "Belt", 2, 1, 0, 0, 0, 3, 0, 0, 0, 82},
&ItemType{"Colossus Girdle", "uhc", "Belt", 2, 1, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Bone Visage", "uh9", "Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 84},
&ItemType{"Troll Nest", "ush", "Shield", 2, 3, 0, 0, 0, 3, 0, 0, 0, 76},
&ItemType{"Blade Barrier", "upk", "Shield", 2, 3, 0, 0, 0, 3, 0, 0, 0, 68},
&ItemType{"Alpha Helm", "dr6", "Druid Pelt", 2, 2, 0, 0, 0, 2, 0, 0, 0, 35},
&ItemType{"Griffon Headdress", "dr7", "Druid Pelt", 2, 2, 0, 0, 0, 2, 0, 0, 0, 40},
&ItemType{"Hunter's Guise", "dr8", "Druid Pelt", 2, 2, 0, 0, 0, 2, 0, 0, 0, 46},
&ItemType{"Sacred Feathers", "dr9", "Druid Pelt", 2, 2, 0, 0, 0, 2, 0, 0, 0, 50},
&ItemType{"Totemic Mask", "dra", "Druid Pelt", 2, 2, 0, 0, 0, 2, 0, 0, 0, 55},
&ItemType{"Jawbone Visor", "ba6", "Barbarian Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 33},
&ItemType{"Lion Helm", "ba7", "Barbarian Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 38},
&ItemType{"Rage Mask", "ba8", "Barbarian Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 44},
&ItemType{"Savage Helmet", "ba9", "Barbarian Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 49},
&ItemType{"Slayer Guard", "baa", "Barbarian Helm", 2, 2, 0, 0, 0, 2, 0, 0, 0, 54},
&ItemType{"Akaran Targe", "pa6", "Paladin Shield", 2, 2, 0, 0, 0, 2, 0, 0, 0, 35},
&ItemType{"Akaran Rondache", "pa7", "Paladin Shield", 2, 2, 0, 0, 0, 2, 0, 0, 0, 40},
&ItemType{"Protector Shield", "pa8", "Paladin Shield", 2, 4, 0, 0, 0, 2, 0, 0, 0, 46},
&ItemType{"Gilded Shield", "pa9", "Paladin Shield", 2, 4, 0, 0, 0, 2, 0, 0, 0, 51},
&ItemType{"Royal Shield", "paa", "Paladin Shield", 2, 2, 0, 0, 0, 2, 0, 0, 0, 55},
&ItemType{"Mummified Trophy", "ne6", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 2, 0, 0, 0, 33},
&ItemType{"Fetish Trophy", "ne7", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 2, 0, 0, 0, 39},
&ItemType{"Sexton Trophy", "ne8", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 2, 0, 0, 0, 45},
&ItemType{"Cantor Trophy", "ne9", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 2, 0, 0, 0, 49},
&ItemType{"Hierophant Trophy", "nea", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 2, 0, 0, 0, 54},
&ItemType{"Blood Spirit", "drb", "Druid Pelt", 2, 2, 0, 0, 0, 3, 0, 0, 0, 62},
&ItemType{"Sun Spirit", "drc", "Druid Pelt", 2, 2, 0, 0, 0, 3, 0, 0, 0, 69},
&ItemType{"Earth Spirit", "drd", "Druid Pelt", 2, 2, 0, 0, 0, 3, 0, 0, 0, 76},
&ItemType{"Sky Spirit", "dre", "Druid Pelt", 2, 2, 0, 0, 0, 3, 0, 0, 0, 83},
&ItemType{"Dream Spirit", "drf", "Druid Pelt", 2, 2, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Carnage Helm", "bab", "Barbarian Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 60},
&ItemType{"Fury Visor", "bac", "Barbarian Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 66},
&ItemType{"Destroyer Helm", "bad", "Barbarian Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 73},
&ItemType{"Conqueror Crown", "bae", "Barbarian Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 80},
&ItemType{"Guardian Crown", "baf", "Barbarian Helm", 2, 2, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Sacred Targe", "pab", "Paladin Shield", 2, 2, 0, 0, 0, 3, 0, 0, 0, 63},
&ItemType{"Sacred Rondache", "pac", "Paladin Shield", 2, 2, 0, 0, 0, 3, 0, 0, 0, 70},
&ItemType{"Kurast Shield", "pad", "Paladin Shield", 2, 4, 0, 0, 0, 3, 0, 0, 0, 74},
&ItemType{"Zakarum Shield", "pae", "Paladin Shield", 2, 4, 0, 0, 0, 3, 0, 0, 0, 82},
&ItemType{"Vortex Shield", "paf", "Paladin Shield", 2, 2, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Minion Skull", "neb", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 3, 0, 0, 0, 59},
&ItemType{"Hellspawn Skull", "neg", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 3, 0, 0, 0, 67},
&ItemType{"Overseer Skull", "ned", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 3, 0, 0, 0, 66},
&ItemType{"Succubus Skull", "nee", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 3, 0, 0, 0, 81},
&ItemType{"Bloodlord Skull", "nef", "Necromancer Shrunken Head", 2, 2, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Elixir", "elx", "Elixir", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"hpo", "hpo", "Health Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"mpo", "mpo", "Mana Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"hpf", "hpf", "Health Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"mpf", "mpf", "Mana Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Stamina Potion", "vps", "Stamina Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Antidote Potion", "yps", "Antidote Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Rejuvenation Potion", "rvs", "Rejuvenation Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Full Rejuvenation Potion", "rvl", "Rejuvenation Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Thawing Potion", "wms", "Thawing Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Tome of Town Portal", "tbk", "Tome", 1, 2, 1, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Tome of Identify", "ibk", "Tome", 1, 2, 1, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Amulet", "amu", "Amulet", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Top of the Horadric Staff", "vip", "Amulet", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Ring", "rin", "Ring", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Gold", "gld", "Gold", 1, 1, 1, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Scroll of Inifuss", "bks", "Quest Item", 2, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Key to the Cairn Stones", "bkd", "Quest Item", 2, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Arrows", "aqv", "Arrows", 1, 3, 1, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Torch", "tch", "Torch", 1, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Bolts", "cqv", "Bolts", 1, 3, 1, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Scroll of Town Portal", "tsc", "Scroll", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Scroll of Identify", "isc", "Scroll", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Heart", "hrt", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Brain", "brz", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Jawbone", "jaw", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Eye", "eyz", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Horn", "hrn", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Tail", "tal", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Flag", "flg", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Fang", "fng", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Quill", "qll", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Soul", "sol", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Scalp", "scz", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Spleen", "spe", "Body Part", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Key", "key", "Key", 1, 1, 1, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"The Black Tower Key", "luv", "Key", 1, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Potion of Life", "xyz", "Quest Item", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"A Jade Figurine", "j34", "Quest Item", 1, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"The Golden Bird", "g34", "Quest Item", 1, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Lam Esen's Tome", "bbb", "Quest Item", 2, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Horadric Cube", "box", "Quest Item", 2, 2, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Horadric Scroll", "tr1", "Quest Item", 2, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Mephisto's Soulstone", "mss", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Book of Skill", "ass", "Quest Item", 2, 2, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Khalim's Eye", "qey", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Khalim's Heart", "qhr", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Khalim's Brain", "qbr", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Ear", "ear", "Ear", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Chipped Amethyst", "gcv", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 33, 0},
&ItemType{"Flawed Amethyst", "gfv", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 34, 0},
&ItemType{"Amethyst", "gsv", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 36, 0},
&ItemType{"Flawless Amethyst", "gzv", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 40, 0},
&ItemType{"Perfect Amethyst", "gpv", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 48, 0},
&ItemType{"Chipped Topaz", "gcy", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 1025, 0},
&ItemType{"Flawed Topaz", "gfy", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 1026, 0},
&ItemType{"Topaz", "gsy", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 1028, 0},
&ItemType{"Flawless Topaz", "gly", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 1032, 0},
&ItemType{"Perfect Topaz", "gpy", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 1040, 0},
&ItemType{"Chipped Sapphire", "gcb", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 513, 0},
&ItemType{"Flawed Sapphire", "gfb", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 514, 0},
&ItemType{"Sapphire", "gsb", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 516, 0},
&ItemType{"Flawless Sapphire", "glb", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 520, 0},
&ItemType{"Perfect Sapphire", "gpb", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 528, 0},
&ItemType{"Chipped Emerald", "gcg", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 129, 0},
&ItemType{"Flawed Emerald", "gfg", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 130, 0},
&ItemType{"Emerald", "gsg", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 132, 0},
&ItemType{"Flawless Emerald", "glg", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 136, 0},
&ItemType{"Perfect Emerald", "gpg", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 144, 0},
&ItemType{"Chipped Ruby", "gcr", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 257, 0},
&ItemType{"Flawed Ruby", "gfr", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 258, 0},
&ItemType{"Ruby", "gsr", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 260, 0},
&ItemType{"Flawless Ruby", "glr", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 264, 0},
&ItemType{"Perfect Ruby", "gpr", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 272, 0},
&ItemType{"Chipped Diamond", "gcw", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 65, 0},
&ItemType{"Flawed Diamond", "gfw", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 66, 0},
&ItemType{"Diamond", "gsw", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 68, 0},
&ItemType{"Flawless Diamond", "glw", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 72, 0},
&ItemType{"Perfect Diamond", "gpw", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 80, 0},
&ItemType{"Minor Healing Potion", "hp1", "Health Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Light Healing Potion", "hp2", "Health Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Healing Potion", "hp3", "Health Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Greater Healing Potion", "hp4", "Health Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Super Healing Potion", "hp5", "Health Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Minor Mana Potion", "mp1", "Mana Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Light Mana Potion", "mp2", "Mana Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Mana Potion", "mp3", "Mana Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Greater Mana Potion", "mp4", "Mana Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Super Mana Potion", "mp5", "Mana Potion", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Chipped Skull", "skc", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 2049, 0},
&ItemType{"Flawed Skull", "skf", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 2050, 0},
&ItemType{"Skull", "sku", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 2052, 0},
&ItemType{"Flawless Skull", "skl", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 2056, 0},
&ItemType{"Perfect Skull", "skz", "Gem", 1, 1, 0, 0, 0, 0, 0, 0, 2064, 0},
&ItemType{"Herb", "hrb", "Herb", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Small Charm", "cm1", "Small Charm", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Large Charm", "cm2", "Large Charm", 1, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Grand Charm", "cm3", "Grand Charm", 1, 3, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"rps", "rps", "Health Potion", 1, 1, 1, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"rpl", "rpl", "Health Potion", 1, 1, 1, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"bps", "bps", "Mana Potion", 1, 1, 1, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"bpl", "bpl", "Mana Potion", 1, 1, 1, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"El Rune", "r01", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Eld Rune", "r02", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Tir Rune", "r03", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Nef Rune", "r04", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Eth Rune", "r05", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Ith Rune", "r06", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Tal Rune", "r07", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Ral Rune", "r08", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Ort Rune", "r09", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Thul Rune", "r10", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Amn Rune", "r11", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Sol Rune", "r12", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Shael Rune", "r13", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Dol Rune", "r14", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Hel Rune", "r15", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Io Rune", "r16", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Lum Rune", "r17", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Ko Rune", "r18", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Fal Rune", "r19", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Lem Rune", "r20", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Pul Rune", "r21", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Um Rune", "r22", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Mal Rune", "r23", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Ist Rune", "r24", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Gul Rune", "r25", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Vex Rune", "r26", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Ohm Rune", "r27", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Lo Rune", "r28", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Sur Rune", "r29", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Ber Rune", "r30", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Jah Rune", "r31", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Cham Rune", "r32", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Zod Rune", "r33", "Rune", 1, 1, 0, 0, 0, 0, 0, 0, 4096, 0},
&ItemType{"Jewel", "jew", "Jewel", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Malah's Potion", "ice", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Scroll of Knowledge", "0sc", "Scroll", 1, 1, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Scroll of Resistance", "tr2", "Quest Item", 2, 2, 0, 1, 0, 0, 0, 0, 0, 0},
&ItemType{"Key of Terror", "pk1", "Quest Item", 1, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Key of Hate", "pk2", "Quest Item", 1, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Key of Destruction", "pk3", "Quest Item", 1, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Twisted Essence of Suffering", "tes", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Charged Essence of Hatred", "ceh", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Burning Essence of Terror", "bet", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Festering Essence of Destruction", "fed", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Token of Absolution", "toa", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Diablo's Horn", "dhn", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Baal's Eye", "bey", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Mephisto's Brain", "mbr", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Standard of Heroes", "std", "Quest Item", 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Hand Axe", "hax", "Axe", 1, 3, 0, 0, 0, 1, 0, 0, 0, 3},
&ItemType{"Axe", "axe", "Axe", 2, 3, 0, 0, 0, 1, 0, 0, 0, 7},
&ItemType{"Double Axe", "2ax", "Axe", 2, 3, 0, 0, 0, 1, 0, 0, 0, 13},
&ItemType{"Military Pick", "mpi", "Axe", 2, 3, 0, 0, 0, 1, 0, 0, 0, 19},
&ItemType{"War Axe", "wax", "Axe", 2, 3, 0, 0, 0, 1, 0, 0, 0, 25},
&ItemType{"Large Axe", "lax", "Axe", 2, 3, 0, 0, 0, 1, 0, 0, 0, 6},
&ItemType{"Broad Axe", "bax", "Axe", 2, 3, 0, 0, 0, 1, 0, 0, 0, 12},
&ItemType{"Battle Axe", "btx", "Axe", 2, 3, 0, 0, 0, 1, 0, 0, 0, 17},
&ItemType{"Great Axe", "gax", "Axe", 2, 4, 0, 0, 0, 1, 0, 0, 0, 23},
&ItemType{"Giant Axe", "gix", "Axe", 2, 3, 0, 0, 0, 1, 0, 0, 0, 27},
&ItemType{"Wand", "wnd", "Wand", 1, 2, 0, 0, 0, 1, 0, 0, 0, 2},
&ItemType{"Yew Wand", "ywn", "Wand", 1, 2, 0, 0, 0, 1, 0, 0, 0, 12},
&ItemType{"Bone Wand", "bwn", "Wand", 1, 2, 0, 0, 0, 1, 0, 0, 0, 18},
&ItemType{"Grim Wand", "gwn", "Wand", 1, 2, 0, 0, 0, 1, 0, 0, 0, 26},
&ItemType{"Club", "clb", "Club", 1, 3, 0, 0, 0, 1, 0, 0, 0, 1},
&ItemType{"Scepter", "scp", "Scepter", 1, 3, 0, 0, 0, 1, 0, 0, 0, 3},
&ItemType{"Grand Scepter", "gsc", "Scepter", 1, 3, 0, 0, 0, 1, 0, 0, 0, 15},
&ItemType{"War Scepter", "wsp", "Scepter", 2, 3, 0, 0, 0, 1, 0, 0, 0, 21},
&ItemType{"Spiked Club", "spc", "Club", 1, 3, 0, 0, 0, 1, 0, 0, 0, 4},
&ItemType{"Mace", "mac", "Mace", 1, 3, 0, 0, 0, 1, 0, 0, 0, 8},
&ItemType{"Morning Star", "mst", "Mace", 1, 3, 0, 0, 0, 1, 0, 0, 0, 13},
&ItemType{"Flail", "fla", "Mace", 2, 3, 0, 0, 0, 1, 0, 0, 0, 19},
&ItemType{"War Hammer", "whm", "Hammer", 2, 3, 0, 0, 0, 1, 0, 0, 0, 25},
&ItemType{"Maul", "mau", "Hammer", 2, 4, 0, 0, 0, 1, 0, 0, 0, 21},
&ItemType{"Great Maul", "gma", "Hammer", 2, 3, 0, 0, 0, 1, 0, 0, 0, 32},
&ItemType{"Short Sword", "ssd", "Sword", 1, 3, 0, 0, 0, 1, 0, 0, 0, 1},
&ItemType{"Scimitar", "scm", "Sword", 1, 3, 0, 0, 0, 1, 0, 0, 0, 5},
&ItemType{"Sabre", "sbr", "Sword", 1, 3, 0, 0, 0, 1, 0, 0, 0, 8},
&ItemType{"Falchion", "flc", "Sword", 1, 3, 0, 0, 0, 1, 0, 0, 0, 11},
&ItemType{"Crystal Sword", "crs", "Sword", 2, 3, 0, 0, 0, 1, 0, 0, 0, 11},
&ItemType{"Broad Sword", "bsd", "Sword", 2, 3, 0, 0, 0, 1, 0, 0, 0, 15},
&ItemType{"Long Sword", "lsd", "Sword", 2, 3, 0, 0, 0, 1, 0, 0, 0, 20},
&ItemType{"War Sword", "wsd", "Sword", 1, 3, 0, 0, 0, 1, 0, 0, 0, 27},
&ItemType{"Two-Handed Sword", "2hs", "Sword", 1, 4, 0, 0, 0, 1, 0, 0, 0, 10},
&ItemType{"Claymore", "clm", "Sword", 1, 4, 0, 0, 0, 1, 0, 0, 0, 17},
&ItemType{"Giant Sword", "gis", "Sword", 1, 4, 0, 0, 0, 1, 0, 0, 0, 21},
&ItemType{"Bastard Sword", "bsw", "Sword", 1, 4, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Flamberge", "flb", "Sword", 2, 4, 0, 0, 0, 1, 0, 0, 0, 27},
&ItemType{"Great Sword", "gsd", "Sword", 2, 4, 0, 0, 0, 1, 0, 0, 0, 33},
&ItemType{"Dagger", "dgr", "Dagger", 1, 2, 0, 0, 0, 1, 0, 0, 0, 3},
&ItemType{"Dirk", "dir", "Dagger", 1, 2, 0, 0, 0, 1, 0, 0, 0, 9},
&ItemType{"Kris", "kri", "Dagger", 1, 3, 0, 0, 0, 1, 0, 0, 0, 17},
&ItemType{"Blade", "bld", "Dagger", 1, 3, 0, 0, 0, 1, 0, 0, 0, 23},
&ItemType{"Throwing Knife", "tkf", "Throwing Knife", 1, 2, 1, 0, 1, 1, 0, 0, 0, 2},
&ItemType{"Throwing Axe", "tax", "Throwing Axe", 1, 2, 1, 0, 1, 1, 0, 0, 0, 7},
&ItemType{"Balanced Knife", "bkf", "Throwing Knife", 1, 2, 1, 0, 1, 1, 0, 0, 0, 13},
&ItemType{"Balanced Axe", "bal", "Throwing Axe", 2, 3, 1, 0, 1, 1, 0, 0, 0, 7},
&ItemType{"Javelin", "jav", "Javelin", 1, 3, 1, 0, 1, 1, 0, 0, 0, 1},
&ItemType{"Pilum", "pil", "Javelin", 1, 3, 1, 0, 1, 1, 0, 0, 0, 10},
&ItemType{"Short Spear", "ssp", "Javelin", 1, 3, 1, 0, 1, 1, 0, 0, 0, 15},
&ItemType{"Glaive", "glv", "Javelin", 1, 4, 1, 0, 1, 1, 0, 0, 0, 23},
&ItemType{"Throwing Spear", "tsp", "Javelin", 1, 4, 1, 0, 1, 1, 0, 0, 0, 29},
&ItemType{"Spear", "spr", "Spear", 2, 4, 0, 0, 0, 1, 0, 0, 0, 5},
&ItemType{"Trident", "tri", "Spear", 2, 4, 0, 0, 0, 1, 0, 0, 0, 9},
&ItemType{"Brandistock", "brn", "Spear", 2, 4, 0, 0, 0, 1, 0, 0, 0, 16},
&ItemType{"Spetum", "spt", "Spear", 2, 4, 0, 0, 0, 1, 0, 0, 0, 20},
&ItemType{"Pike", "pik", "Spear", 2, 4, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Bardiche", "bar", "Polearm", 2, 4, 0, 0, 0, 1, 0, 0, 0, 5},
&ItemType{"Voulge", "vou", "Polearm", 2, 4, 0, 0, 0, 1, 0, 0, 0, 11},
&ItemType{"Scythe", "scy", "Polearm", 2, 4, 0, 0, 0, 1, 0, 0, 0, 15},
&ItemType{"Poleaxe", "pax", "Polearm", 2, 4, 0, 0, 0, 1, 0, 0, 0, 21},
&ItemType{"Halberd", "hal", "Polearm", 2, 4, 0, 0, 0, 1, 0, 0, 0, 29},
&ItemType{"War Scythe", "wsc", "Polearm", 2, 4, 0, 0, 0, 1, 0, 0, 0, 34},
&ItemType{"Short Staff", "sst", "Staff", 1, 3, 0, 0, 0, 1, 0, 0, 0, 1},
&ItemType{"Long Staff", "lst", "Staff", 1, 4, 0, 0, 0, 1, 0, 0, 0, 8},
&ItemType{"Gnarled Staff", "cst", "Staff", 1, 4, 0, 0, 0, 1, 0, 0, 0, 12},
&ItemType{"Battle Staff", "bst", "Staff", 1, 4, 0, 0, 0, 1, 0, 0, 0, 17},
&ItemType{"War Staff", "wst", "Staff", 2, 4, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Short Bow", "sbw", "Bow", 2, 3, 0, 0, 0, 1, 0, 0, 0, 1},
&ItemType{"Hunter's Bow", "hbw", "Bow", 2, 3, 0, 0, 0, 1, 0, 0, 0, 5},
&ItemType{"Long Bow", "lbw", "Bow", 2, 4, 0, 0, 0, 1, 0, 0, 0, 8},
&ItemType{"Composite Bow", "cbw", "Bow", 2, 3, 0, 0, 0, 1, 0, 0, 0, 12},
&ItemType{"Short Battle Bow", "sbb", "Bow", 2, 3, 0, 0, 0, 1, 0, 0, 0, 18},
&ItemType{"Long Battle Bow", "lbb", "Bow", 2, 4, 0, 0, 0, 1, 0, 0, 0, 23},
&ItemType{"Short War Bow", "swb", "Bow", 2, 3, 0, 0, 0, 1, 0, 0, 0, 27},
&ItemType{"Long War Bow", "lwb", "Bow", 2, 4, 0, 0, 0, 1, 0, 0, 0, 31},
&ItemType{"Light Crossbow", "lxb", "Crossbow", 2, 3, 0, 0, 0, 1, 0, 0, 0, 6},
&ItemType{"Crossbow", "mxb", "Crossbow", 2, 3, 0, 0, 0, 1, 0, 0, 0, 15},
&ItemType{"Heavy Crossbow", "hxb", "Crossbow", 2, 4, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Repeating Crossbow", "rxb", "Crossbow", 2, 3, 0, 0, 0, 1, 0, 0, 0, 33},
&ItemType{"Rancid Gas Potion", "gps", "Throwing Potion", 1, 1, 1, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Oil Potion", "ops", "Throwing Potion", 1, 1, 1, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Choking Gas Potion", "gpm", "Throwing Potion", 1, 1, 1, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Exploding Potion", "opm", "Throwing Potion", 1, 1, 1, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Strangling Gas Potion", "gpl", "Throwing Potion", 1, 1, 1, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Fulminating Potion", "opl", "Throwing Potion", 1, 1, 1, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Decoy Gidbinn", "d33", "Dagger", 1, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"The Gidbinn", "g33", "Dagger", 1, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Wirt's Leg", "leg", "Club", 1, 3, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Horadric Malus", "hdm", "Hammer", 1, 2, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Hell Forge Hammer", "hfh", "Hammer", 2, 3, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Horadric Staff", "hst", "Staff", 1, 4, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Shaft of the Horadric Staff", "msf", "Staff", 1, 3, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Hatchet", "9ha", "Axe", 1, 3, 0, 0, 0, 2, 0, 0, 0, 31},
&ItemType{"Cleaver", "9ax", "Axe", 2, 3, 0, 0, 0, 2, 0, 0, 0, 34},
&ItemType{"Twin Axe", "92a", "Axe", 2, 3, 0, 0, 0, 2, 0, 0, 0, 39},
&ItemType{"Crowbill", "9mp", "Axe", 2, 3, 0, 0, 0, 2, 0, 0, 0, 43},
&ItemType{"Naga", "9wa", "Axe", 2, 3, 0, 0, 0, 2, 0, 0, 0, 48},
&ItemType{"Military Axe", "9la", "Axe", 2, 3, 0, 0, 0, 2, 0, 0, 0, 34},
&ItemType{"Bearded Axe", "9ba", "Axe", 2, 3, 0, 0, 0, 2, 0, 0, 0, 38},
&ItemType{"Tabar", "9bt", "Axe", 2, 3, 0, 0, 0, 2, 0, 0, 0, 42},
&ItemType{"Gothic Axe", "9ga", "Axe", 2, 4, 0, 0, 0, 2, 0, 0, 0, 46},
&ItemType{"Ancient Axe", "9gi", "Axe", 2, 3, 0, 0, 0, 2, 0, 0, 0, 51},
&ItemType{"Burnt Wand", "9wn", "Wand", 1, 2, 0, 0, 0, 2, 0, 0, 0, 31},
&ItemType{"Petrified Wand", "9yw", "Wand", 1, 2, 0, 0, 0, 2, 0, 0, 0, 38},
&ItemType{"Tomb Wand", "9bw", "Wand", 1, 2, 0, 0, 0, 2, 0, 0, 0, 43},
&ItemType{"Grave Wand", "9gw", "Wand", 1, 2, 0, 0, 0, 2, 0, 0, 0, 49},
&ItemType{"Cudgel", "9cl", "Club", 1, 3, 0, 0, 0, 2, 0, 0, 0, 30},
&ItemType{"Rune Scepter", "9sc", "Scepter", 1, 3, 0, 0, 0, 2, 0, 0, 0, 31},
&ItemType{"Holy Water Sprinkler", "9qs", "Scepter", 1, 3, 0, 0, 0, 2, 0, 0, 0, 4},
&ItemType{"Divine Scepter", "9ws", "Scepter", 2, 3, 0, 0, 0, 2, 0, 0, 0, 45},
&ItemType{"Barbed Club", "9sp", "Club", 1, 3, 0, 0, 0, 2, 0, 0, 0, 32},
&ItemType{"Flanged Mace", "9ma", "Mace", 1, 3, 0, 0, 0, 2, 0, 0, 0, 35},
&ItemType{"Jagged Star", "9mt", "Mace", 1, 3, 0, 0, 0, 2, 0, 0, 0, 39},
&ItemType{"Knout", "9fl", "Mace", 2, 3, 0, 0, 0, 2, 0, 0, 0, 43},
&ItemType{"Battle Hammer", "9wh", "Hammer", 2, 3, 0, 0, 0, 2, 0, 0, 0, 48},
&ItemType{"War Club", "9m9", "Hammer", 2, 4, 0, 0, 0, 2, 0, 0, 0, 45},
&ItemType{"Martel de Fer", "9gm", "Hammer", 2, 3, 0, 0, 0, 2, 0, 0, 0, 53},
&ItemType{"Gladius", "9ss", "Sword", 1, 3, 0, 0, 0, 2, 0, 0, 0, 30},
&ItemType{"Cutlass", "9sm", "Sword", 1, 3, 0, 0, 0, 2, 0, 0, 0, 43},
&ItemType{"Shamshir", "9sb", "Sword", 1, 3, 0, 0, 0, 2, 0, 0, 0, 35},
&ItemType{"Tulwar", "9fc", "Sword", 1, 3, 0, 0, 0, 2, 0, 0, 0, 37},
&ItemType{"Dimensional Blade", "9cr", "Sword", 2, 3, 0, 0, 0, 2, 0, 0, 0, 37},
&ItemType{"Battle Sword", "9bs", "Sword", 2, 3, 0, 0, 0, 2, 0, 0, 0, 40},
&ItemType{"Rune Sword", "9ls", "Sword", 2, 3, 0, 0, 0, 2, 0, 0, 0, 44},
&ItemType{"Ancient Sword", "9wd", "Sword", 1, 3, 0, 0, 0, 2, 0, 0, 0, 49},
&ItemType{"Espandon", "92h", "Sword", 1, 4, 0, 0, 0, 2, 0, 0, 0, 37},
&ItemType{"Dacian Falx", "9cm", "Sword", 1, 4, 0, 0, 0, 2, 0, 0, 0, 42},
&ItemType{"Tusk Sword", "9gs", "Sword", 1, 4, 0, 0, 0, 2, 0, 0, 0, 45},
&ItemType{"Gothic Sword", "9b9", "Sword", 1, 4, 0, 0, 0, 2, 0, 0, 0, 48},
&ItemType{"Zweihander", "9fb", "Sword", 2, 4, 0, 0, 0, 2, 0, 0, 0, 49},
&ItemType{"Executioner Sword", "9gd", "Sword", 2, 4, 0, 0, 0, 2, 0, 0, 0, 54},
&ItemType{"Poignard", "9dg", "Dagger", 1, 2, 0, 0, 0, 2, 0, 0, 0, 31},
&ItemType{"Rondel", "9di", "Dagger", 1, 2, 0, 0, 0, 2, 0, 0, 0, 36},
&ItemType{"Cinquedeas", "9kr", "Dagger", 1, 3, 0, 0, 0, 2, 0, 0, 0, 42},
&ItemType{"Stiletto", "9bl", "Dagger", 1, 3, 0, 0, 0, 2, 0, 0, 0, 46},
&ItemType{"Battle Dart", "9tk", "Throwing Knife", 1, 2, 1, 0, 1, 2, 0, 0, 0, 31},
&ItemType{"Francisca", "9ta", "Throwing Axe", 1, 2, 1, 0, 1, 2, 0, 0, 0, 34},
&ItemType{"War Dart", "9bk", "Throwing Knife", 1, 2, 1, 0, 1, 2, 0, 0, 0, 39},
&ItemType{"Hurlbat", "9b8", "Throwing Axe", 2, 3, 1, 0, 1, 2, 0, 0, 0, 41},
&ItemType{"War Javelin", "9ja", "Javelin", 1, 3, 1, 0, 1, 2, 0, 0, 0, 30},
&ItemType{"Great Pilum", "9pi", "Javelin", 1, 3, 1, 0, 1, 2, 0, 0, 0, 37},
&ItemType{"Simbilan", "9s9", "Javelin", 1, 3, 1, 0, 1, 2, 0, 0, 0, 40},
&ItemType{"Spiculum", "9gl", "Javelin", 1, 4, 1, 0, 1, 2, 0, 0, 0, 46},
&ItemType{"Harpoon", "9ts", "Javelin", 1, 4, 1, 0, 1, 2, 0, 0, 0, 51},
&ItemType{"War Spear", "9sr", "Spear", 2, 4, 0, 0, 0, 2, 0, 0, 0, 33},
&ItemType{"Fuscina", "9tr", "Spear", 2, 4, 0, 0, 0, 2, 0, 0, 0, 36},
&ItemType{"War Fork", "9br", "Spear", 2, 4, 0, 0, 0, 2, 0, 0, 0, 41},
&ItemType{"Yari", "9st", "Spear", 2, 4, 0, 0, 0, 2, 0, 0, 0, 44},
&ItemType{"Lance", "9p9", "Spear", 2, 4, 0, 0, 0, 2, 0, 0, 0, 47},
&ItemType{"Lochaber Axe", "9b7", "Polearm", 2, 4, 0, 0, 0, 2, 0, 0, 0, 33},
&ItemType{"Bill", "9vo", "Polearm", 2, 4, 0, 0, 0, 2, 0, 0, 0, 37},
&ItemType{"Battle Scythe", "9s8", "Polearm", 2, 4, 0, 0, 0, 2, 0, 0, 0, 40},
&ItemType{"Partizan", "9pa", "Polearm", 2, 4, 0, 0, 0, 2, 0, 0, 0, 35},
&ItemType{"Bec-de-Corbin", "9h9", "Polearm", 2, 4, 0, 0, 0, 2, 0, 0, 0, 51},
&ItemType{"Grim Scythe", "9wc", "Polearm", 2, 4, 0, 0, 0, 2, 0, 0, 0, 55},
&ItemType{"Jo Staff", "8ss", "Staff", 1, 3, 0, 0, 0, 2, 0, 0, 0, 30},
&ItemType{"Quarterstaff", "8ls", "Staff", 1, 4, 0, 0, 0, 2, 0, 0, 0, 35},
&ItemType{"Cedar Staff", "8cs", "Staff", 1, 4, 0, 0, 0, 2, 0, 0, 0, 38},
&ItemType{"Gothic Staff", "8bs", "Staff", 1, 4, 0, 0, 0, 2, 0, 0, 0, 42},
&ItemType{"Rune Staff", "8ws", "Staff", 2, 4, 0, 0, 0, 2, 0, 0, 0, 47},
&ItemType{"Edge Bow", "8sb", "Bow", 2, 3, 0, 0, 0, 2, 0, 0, 0, 30},
&ItemType{"Razor Bow", "8hb", "Bow", 2, 3, 0, 0, 0, 2, 0, 0, 0, 33},
&ItemType{"Cedar Bow", "8lb", "Bow", 2, 4, 0, 0, 0, 2, 0, 0, 0, 35},
&ItemType{"Double Bow", "8cb", "Bow", 2, 3, 0, 0, 0, 2, 0, 0, 0, 39},
&ItemType{"Short Siege Bow", "8s8", "Bow", 2, 3, 0, 0, 0, 2, 0, 0, 0, 43},
&ItemType{"Large Siege Bow", "8l8", "Bow", 2, 4, 0, 0, 0, 2, 0, 0, 0, 46},
&ItemType{"Rune Bow", "8sw", "Bow", 2, 3, 0, 0, 0, 2, 0, 0, 0, 49},
&ItemType{"Gothic Bow", "8lw", "Bow", 2, 4, 0, 0, 0, 2, 0, 0, 0, 52},
&ItemType{"Arbalest", "8lx", "Crossbow", 2, 3, 0, 0, 0, 2, 0, 0, 0, 34},
&ItemType{"Siege Crossbow", "8mx", "Crossbow", 2, 3, 0, 0, 0, 2, 0, 0, 0, 40},
&ItemType{"Ballista", "8hx", "Crossbow", 2, 4, 0, 0, 0, 2, 0, 0, 0, 47},
&ItemType{"Chu-Ko-Nu", "8rx", "Crossbow", 2, 3, 0, 0, 0, 2, 0, 0, 0, 54},
&ItemType{"Khalim's Flail", "qf1", "Mace", 2, 3, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Khalim's Will", "qf2", "Mace", 2, 3, 0, 0, 0, 0, 0, 0, 0, 0},
&ItemType{"Katar", "ktr", "Assassin Katar", 1, 3, 0, 0, 0, 1, 0, 0, 0, 1},
&ItemType{"Wrist Blade", "wrb", "Assassin Katar", 1, 3, 0, 0, 0, 1, 0, 0, 0, 9},
&ItemType{"Hatchet Hands", "axf", "Assassin Katar", 1, 3, 0, 0, 0, 1, 0, 0, 0, 12},
&ItemType{"Cestus", "ces", "Assassin Katar", 1, 3, 0, 0, 0, 1, 0, 0, 0, 15},
&ItemType{"Claws", "clw", "Assassin Katar", 1, 3, 0, 0, 0, 1, 0, 0, 0, 18},
&ItemType{"Blade Talons", "btl", "Assassin Katar", 1, 3, 0, 0, 0, 1, 0, 0, 0, 21},
&ItemType{"Scissors Katar", "skr", "Assassin Katar", 1, 3, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Quhab", "9ar", "Assassin Katar", 1, 3, 0, 0, 0, 2, 0, 0, 0, 28},
&ItemType{"Wrist Spike", "9wb", "Assassin Katar", 1, 3, 0, 0, 0, 2, 0, 0, 0, 32},
&ItemType{"Fascia", "9xf", "Assassin Katar", 1, 3, 0, 0, 0, 2, 0, 0, 0, 36},
&ItemType{"Hand Scythe", "9cs", "Assassin Katar", 1, 3, 0, 0, 0, 2, 0, 0, 0, 41},
&ItemType{"Greater Claws", "9lw", "Assassin Katar", 1, 3, 0, 0, 0, 2, 0, 0, 0, 45},
&ItemType{"Greater Talons", "9tw", "Assassin Katar", 1, 3, 0, 0, 0, 2, 0, 0, 0, 50},
&ItemType{"Scissors Quhab", "9qr", "Assassin Katar", 1, 3, 0, 0, 0, 2, 0, 0, 0, 54},
&ItemType{"Suwayyah", "7ar", "Assassin Katar", 1, 3, 0, 0, 0, 3, 0, 0, 0, 59},
&ItemType{"Wrist Sword", "7wb", "Assassin Katar", 1, 3, 0, 0, 0, 3, 0, 0, 0, 62},
&ItemType{"War Fist", "7xf", "Assassin Katar", 1, 3, 0, 0, 0, 3, 0, 0, 0, 68},
&ItemType{"Battle Cestus", "7cs", "Assassin Katar", 1, 3, 0, 0, 0, 3, 0, 0, 0, 73},
&ItemType{"Feral Claws", "7lw", "Assassin Katar", 1, 3, 0, 0, 0, 3, 0, 0, 0, 78},
&ItemType{"Runic Talons", "7tw", "Assassin Katar", 1, 3, 0, 0, 0, 3, 0, 0, 0, 81},
&ItemType{"Scissors Suwayyah", "7qr", "Assassin Katar", 1, 3, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Tomahawk", "7ha", "Axe", 1, 3, 0, 0, 0, 3, 0, 0, 0, 54},
&ItemType{"Small Crescent", "7ax", "Axe", 2, 3, 0, 0, 0, 3, 0, 0, 0, 61},
&ItemType{"Ettin Axe", "72a", "Axe", 2, 3, 0, 0, 0, 3, 0, 0, 0, 70},
&ItemType{"War Spike", "7mp", "Axe", 2, 3, 0, 0, 0, 3, 0, 0, 0, 79},
&ItemType{"Berserker Axe", "7wa", "Axe", 2, 3, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Feral Axe", "7la", "Axe", 2, 3, 0, 0, 0, 3, 0, 0, 0, 57},
&ItemType{"Silver-edged Axe", "7ba", "Axe", 2, 3, 0, 0, 0, 3, 0, 0, 0, 65},
&ItemType{"Decapitator", "7bt", "Axe", 2, 3, 0, 0, 0, 3, 0, 0, 0, 73},
&ItemType{"Champion Axe", "7ga", "Axe", 2, 4, 0, 0, 0, 3, 0, 0, 0, 82},
&ItemType{"Glorious Axe", "7gi", "Axe", 2, 3, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Polished Wand", "7wn", "Wand", 1, 2, 0, 0, 0, 3, 0, 0, 0, 55},
&ItemType{"Ghost Wand", "7yw", "Wand", 1, 2, 0, 0, 0, 3, 0, 0, 0, 65},
&ItemType{"Lich Wand", "7bw", "Wand", 1, 2, 0, 0, 0, 3, 0, 0, 0, 75},
&ItemType{"Unearthed Wand", "7gw", "Wand", 1, 2, 0, 0, 0, 3, 0, 0, 0, 86},
&ItemType{"Truncheon", "7cl", "Club", 1, 3, 0, 0, 0, 3, 0, 0, 0, 52},
&ItemType{"Mighty Scepter", "7sc", "Scepter", 1, 3, 0, 0, 0, 3, 0, 0, 0, 62},
&ItemType{"Seraph Rod", "7qs", "Scepter", 1, 3, 0, 0, 0, 3, 0, 0, 0, 76},
&ItemType{"Caduceus", "7ws", "Scepter", 2, 3, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Tyrant Club", "7sp", "Club", 1, 3, 0, 0, 0, 3, 0, 0, 0, 57},
&ItemType{"Reinforced Mace", "7ma", "Mace", 1, 3, 0, 0, 0, 3, 0, 0, 0, 63},
&ItemType{"Devil Star", "7mt", "Mace", 1, 3, 0, 0, 0, 3, 0, 0, 0, 70},
&ItemType{"Scourge", "7fl", "Mace", 2, 3, 0, 0, 0, 3, 0, 0, 0, 76},
&ItemType{"Legendary Mallet", "7wh", "Hammer", 2, 3, 0, 0, 0, 3, 0, 0, 0, 82},
&ItemType{"Ogre Maul", "7m7", "Hammer", 2, 4, 0, 0, 0, 3, 0, 0, 0, 69},
&ItemType{"Thunder Maul", "7gm", "Hammer", 2, 3, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Falcata", "7ss", "Sword", 1, 3, 0, 0, 0, 3, 0, 0, 0, 56},
&ItemType{"Ataghan", "7sm", "Sword", 1, 3, 0, 0, 0, 3, 0, 0, 0, 61},
&ItemType{"Elegant Blade", "7sb", "Sword", 1, 3, 0, 0, 0, 3, 0, 0, 0, 63},
&ItemType{"Hydra Edge", "7fc", "Sword", 1, 3, 0, 0, 0, 3, 0, 0, 0, 69},
&ItemType{"Phase Blade", "7cr", "Sword", 2, 3, 0, 0, 0, 3, 0, 0, 0, 73},
&ItemType{"Conquest Sword", "7bs", "Sword", 2, 3, 0, 0, 0, 3, 0, 0, 0, 78},
&ItemType{"Cryptic Sword", "7ls", "Sword", 2, 3, 0, 0, 0, 3, 0, 0, 0, 82},
&ItemType{"Mythical Sword", "7wd", "Sword", 1, 3, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Legend Sword", "72h", "Sword", 1, 4, 0, 0, 0, 3, 0, 0, 0, 59},
&ItemType{"Highland Blade", "7cm", "Sword", 1, 4, 0, 0, 0, 3, 0, 0, 0, 66},
&ItemType{"Balrog Blade", "7gs", "Sword", 1, 4, 0, 0, 0, 3, 0, 0, 0, 71},
&ItemType{"Champion Sword", "7b7", "Sword", 1, 4, 0, 0, 0, 3, 0, 0, 0, 77},
&ItemType{"Colossus Sword", "7fb", "Sword", 2, 4, 0, 0, 0, 3, 0, 0, 0, 80},
&ItemType{"Colossus Blade", "7gd", "Sword", 2, 4, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Bone Knife", "7dg", "Dagger", 1, 2, 0, 0, 0, 3, 0, 0, 0, 58},
&ItemType{"Mithril Point", "7di", "Dagger", 1, 2, 0, 0, 0, 3, 0, 0, 0, 70},
&ItemType{"Fanged Knife", "7kr", "Dagger", 1, 3, 0, 0, 0, 3, 0, 0, 0, 83},
&ItemType{"Legend Spike", "7bl", "Dagger", 1, 3, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Flying Knife", "7tk", "Throwing Knife", 1, 2, 1, 0, 1, 3, 0, 0, 0, 64},
&ItemType{"Flying Axe", "7ta", "Throwing Axe", 1, 2, 1, 0, 1, 3, 0, 0, 0, 56},
&ItemType{"Winged Knife", "7bk", "Throwing Knife", 1, 2, 1, 0, 1, 3, 0, 0, 0, 77},
&ItemType{"Winged Axe", "7b8", "Throwing Axe", 2, 3, 1, 0, 1, 3, 0, 0, 0, 80},
&ItemType{"Hyperion Javelin", "7ja", "Javelin", 1, 3, 1, 0, 1, 3, 0, 0, 0, 54},
&ItemType{"Stygian Pilum", "7pi", "Javelin", 1, 3, 1, 0, 1, 3, 0, 0, 0, 62},
&ItemType{"Balrog Spear", "7s7", "Javelin", 1, 3, 1, 0, 1, 3, 0, 0, 0, 71},
&ItemType{"Ghost Glaive", "7gl", "Javelin", 1, 4, 1, 0, 1, 3, 0, 0, 0, 79},
&ItemType{"Winged Harpoon", "7ts", "Javelin", 1, 4, 1, 0, 1, 3, 0, 0, 0, 85},
&ItemType{"Hyperion Spear", "7sr", "Spear", 2, 4, 0, 0, 0, 3, 0, 0, 0, 58},
&ItemType{"Stygian Pike", "7tr", "Spear", 2, 4, 0, 0, 0, 3, 0, 0, 0, 66},
&ItemType{"Mancatcher", "7br", "Spear", 2, 4, 0, 0, 0, 3, 0, 0, 0, 74},
&ItemType{"Ghost Spear", "7st", "Spear", 2, 4, 0, 0, 0, 3, 0, 0, 0, 83},
&ItemType{"War Pike", "7p7", "Spear", 2, 4, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Ogre Axe", "7o7", "Polearm", 2, 4, 0, 0, 0, 3, 0, 0, 0, 60},
&ItemType{"Colossus Voulge", "7vo", "Polearm", 2, 4, 0, 0, 0, 3, 0, 0, 0, 64},
&ItemType{"Thresher", "7s8", "Polearm", 2, 4, 0, 0, 0, 3, 0, 0, 0, 71},
&ItemType{"Cryptic Axe", "7pa", "Polearm", 2, 4, 0, 0, 0, 3, 0, 0, 0, 79},
&ItemType{"Great Poleaxe", "7h7", "Polearm", 2, 4, 0, 0, 0, 3, 0, 0, 0, 84},
&ItemType{"Giant Thresher", "7wc", "Polearm", 2, 4, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Walking Stick", "6ss", "Staff", 1, 3, 0, 0, 0, 3, 0, 0, 0, 58},
&ItemType{"Stalagmite", "6ls", "Staff", 1, 4, 0, 0, 0, 3, 0, 0, 0, 66},
&ItemType{"Elder Staff", "6cs", "Staff", 1, 4, 0, 0, 0, 3, 0, 0, 0, 74},
&ItemType{"Shillelagh", "6bs", "Staff", 1, 4, 0, 0, 0, 3, 0, 0, 0, 83},
&ItemType{"Archon Staff", "6ws", "Staff", 2, 4, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Spider Bow", "6sb", "Bow", 2, 3, 0, 0, 0, 3, 0, 0, 0, 55},
&ItemType{"Blade Bow", "6hb", "Bow", 2, 3, 0, 0, 0, 3, 0, 0, 0, 60},
&ItemType{"Shadow Bow", "6lb", "Bow", 2, 4, 0, 0, 0, 3, 0, 0, 0, 63},
&ItemType{"Great Bow", "6cb", "Bow", 2, 3, 0, 0, 0, 3, 0, 0, 0, 68},
&ItemType{"Diamond Bow", "6s7", "Bow", 2, 3, 0, 0, 0, 3, 0, 0, 0, 72},
&ItemType{"Crusader Bow", "6l7", "Bow", 2, 4, 0, 0, 0, 3, 0, 0, 0, 77},
&ItemType{"Ward Bow", "6sw", "Bow", 2, 3, 0, 0, 0, 3, 0, 0, 0, 80},
&ItemType{"Hydra Bow", "6lw", "Bow", 2, 4, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Pellet Bow", "6lx", "Crossbow", 2, 3, 0, 0, 0, 3, 0, 0, 0, 57},
&ItemType{"Gorgon Crossbow", "6mx", "Crossbow", 2, 3, 0, 0, 0, 3, 0, 0, 0, 67},
&ItemType{"Colossus Crossbow", "6hx", "Crossbow", 2, 4, 0, 0, 0, 3, 0, 0, 0, 75},
&ItemType{"Demon Crossbow", "6rx", "Crossbow", 2, 3, 0, 0, 0, 3, 0, 0, 0, 84},
&ItemType{"Eagle Orb", "ob1", "Sorceress Orb", 1, 2, 0, 0, 0, 1, 0, 0, 0, 1},
&ItemType{"Sacred Globe", "ob2", "Sorceress Orb", 1, 2, 0, 0, 0, 1, 0, 0, 0, 8},
&ItemType{"Smoked Sphere", "ob3", "Sorceress Orb", 1, 2, 0, 0, 0, 1, 0, 0, 0, 12},
&ItemType{"Clasped Orb", "ob4", "Sorceress Orb", 1, 2, 0, 0, 0, 1, 0, 0, 0, 17},
&ItemType{"Jared's Stone", "ob5", "Sorceress Orb", 1, 3, 0, 0, 0, 1, 0, 0, 0, 24},
&ItemType{"Stag Bow", "am1", "Amazon Bow", 2, 4, 0, 0, 0, 1, 0, 0, 0, 18},
&ItemType{"Reflex Bow", "am2", "Amazon Bow", 2, 4, 0, 0, 0, 1, 0, 0, 0, 27},
&ItemType{"Maiden Spear", "am3", "Amazon Spear", 2, 4, 0, 0, 0, 1, 0, 0, 0, 18},
&ItemType{"Maiden Pike", "am4", "Amazon Spear", 2, 4, 0, 0, 0, 1, 0, 0, 0, 27},
&ItemType{"Maiden Javelin", "am5", "Amazon Javelin", 1, 3, 1, 0, 1, 1, 0, 0, 0, 23},
&ItemType{"Glowing Orb", "ob6", "Sorceress Orb", 1, 2, 0, 0, 0, 2, 0, 0, 0, 32},
&ItemType{"Crystalline Globe", "ob7", "Sorceress Orb", 1, 2, 0, 0, 0, 2, 0, 0, 0, 37},
&ItemType{"Cloudy Sphere", "ob8", "Sorceress Orb", 1, 2, 0, 0, 0, 2, 0, 0, 0, 41},
&ItemType{"Sparkling Ball", "ob9", "Sorceress Orb", 1, 2, 0, 0, 0, 2, 0, 0, 0, 46},
&ItemType{"Swirling Crystal", "oba", "Sorceress Orb", 1, 3, 0, 0, 0, 2, 0, 0, 0, 50},
&ItemType{"Ashwood Bow", "am6", "Amazon Bow", 2, 4, 0, 0, 0, 2, 0, 0, 0, 39},
&ItemType{"Ceremonial Bow", "am7", "Amazon Bow", 2, 4, 0, 0, 0, 2, 0, 0, 0, 47},
&ItemType{"Ceremonial Spear", "am8", "Amazon Spear", 2, 4, 0, 0, 0, 2, 0, 0, 0, 43},
&ItemType{"Ceremonial Pike", "am9", "Amazon Spear", 2, 4, 0, 0, 0, 2, 0, 0, 0, 51},
&ItemType{"Ceremonial Javelin", "ama", "Amazon Javelin", 1, 3, 1, 0, 1, 2, 0, 0, 0, 35},
&ItemType{"Heavenly Stone", "obb", "Sorceress Orb", 1, 2, 0, 0, 0, 3, 0, 0, 0, 59},
&ItemType{"Eldritch Orb", "obc", "Sorceress Orb", 1, 2, 0, 0, 0, 3, 0, 0, 0, 67},
&ItemType{"Demon Heart", "obd", "Sorceress Orb", 1, 2, 0, 0, 0, 3, 0, 0, 0, 75},
&ItemType{"Vortex Orb", "obe", "Sorceress Orb", 1, 2, 0, 0, 0, 3, 0, 0, 0, 84},
&ItemType{"Dimensional Shard", "obf", "Sorceress Orb", 1, 3, 0, 0, 0, 3, 0, 0, 0, 85},
&ItemType{"Matriarchal Bow", "amb", "Amazon Bow", 2, 4, 0, 0, 0, 3, 0, 0, 0, 53},
&ItemType{"Grand Matron Bow", "amc", "Amazon Bow", 2, 4, 0, 0, 0, 3, 0, 0, 0, 78},
&ItemType{"Matriarchal Spear", "amd", "Amazon Spear", 2, 4, 0, 0, 0, 3, 0, 0, 0, 61},
&ItemType{"Matriarchal Pike", "ame", "Amazon Spear", 2, 4, 0, 0, 0, 3, 0, 0, 0, 81},
&ItemType{"Matriarchal Javelin", "amf", "Amazon Javelin", 1, 3, 1, 0, 1, 3, 0, 0, 0, 65},
}
type StatProperty struct {
Name string
SaveBits int
SaveParamBits int
SaveAdd int
}
var StatProperties = []*StatProperty{
&StatProperty{"Strength", 8, 0, 32},
&StatProperty{"Energy", 7, 0, 32},
&StatProperty{"Dexterity", 7, 0, 32},
&StatProperty{"Vitality", 7, 0, 32},
&StatProperty{"All Attributes", 0, 0, 0},
&StatProperty{"New Skills", 0, 0, 0},
&StatProperty{"Life", 0, 0, 0},
&StatProperty{"Maximum Life", 9, 0, 32},
&StatProperty{"Mana", 0, 0, 0},
&StatProperty{"Maximum Mana", 8, 0, 32},
&StatProperty{"Stamina", 0, 0, 0},
&StatProperty{"Maximum Stamina", 8, 0, 32},
&StatProperty{"Level", 0, 0, 0},
&StatProperty{"Experience", 0, 0, 0},
&StatProperty{"Gold", 0, 0, 0},
&StatProperty{"Bank", 0, 0, 0},
&StatProperty{"Enhanced Defense", 9, 0, 0},
&StatProperty{"Enhanced Maximum Damage", 9, 0, 0},
&StatProperty{"Enhanced Minimum Damage", 9, 0, 0},
&StatProperty{"Attack Rating", 10, 0, 0},
&StatProperty{"Increased Blocking", 6, 0, 0},
&StatProperty{"Minimum Damage", 6, 0, 0},
&StatProperty{"Maximum Damage", 7, 0, 0},
&StatProperty{"Secondary Minimum Damage", 6, 0, 0},
&StatProperty{"Secondary Maximum Damage", 7, 0, 0},
&StatProperty{"Enhanced Damage", 8, 0, 0},
&StatProperty{"Mana Recovery", 8, 0, 0},
&StatProperty{"Mana Recovery Bonus", 8, 0, 0},
&StatProperty{"Stamina Recovery Bonus", 8, 0, 0},
&StatProperty{"Last Experience", 0, 0, 0},
&StatProperty{"Next Experience", 0, 0, 0},
&StatProperty{"Defense", 11, 0, 10},
&StatProperty{"Defense vs. Missiles", 9, 0, 0},
&StatProperty{"Defense vs. Melee", 8, 0, 0},
&StatProperty{"Damage Reduction", 6, 0, 0},
&StatProperty{"Magical Damage Reduction", 6, 0, 0},
&StatProperty{"Damage Reduction (Percent)", 8, 0, 0},
&StatProperty{"Magical Damage Reduction (Percent)", 8, 0, 0},
&StatProperty{"Maximum Magical Damage Reduction (Percent)", 5, 0, 0},
&StatProperty{"Fire Resistance", 8, 0, 50},
&StatProperty{"Maximum Fire Resistance", 5, 0, 0},
&StatProperty{"Lightning Resistance", 8, 0, 50},
&StatProperty{"Maximum Lightning Resistance", 5, 0, 0},
&StatProperty{"Cold Resistance", 8, 0, 50},
&StatProperty{"Maximum Cold Resistance", 5, 0, 0},
&StatProperty{"Poison Resistance", 8, 0, 50},
&StatProperty{"Maximum Poison Resistance", 5, 0, 0},
&StatProperty{"Damage Aura", 0, 0, 0},
&StatProperty{"Minimum Fire Damage", 8, 0, 0},
&StatProperty{"Maximum Fire Damage", 9, 0, 0},
&StatProperty{"Minimum Lightning Damage", 6, 0, 0},
&StatProperty{"Maximum Lightning Damage", 10, 0, 0},
&StatProperty{"Minimum Magical Damage", 8, 0, 0},
&StatProperty{"Maximum Magical Damage", 9, 0, 0},
&StatProperty{"Minimum Cold Damage", 8, 0, 0},
&StatProperty{"Maximum Cold Damage", 9, 0, 0},
&StatProperty{"Cold Damage Length", 8, 0, 0},
&StatProperty{"Minimum Poison Damage", 10, 0, 0},
&StatProperty{"Maximum Poison Damage", 10, 0, 0},
&StatProperty{"Poison Damage length", 9, 0, 0},
&StatProperty{"Minimum Life Stolen Per Hit", 7, 0, 0},
&StatProperty{"Maximum Life Stolen Per Hit", 0, 0, 0},
&StatProperty{"Minimum Mana Stolen Per Hit", 7, 0, 0},
&StatProperty{"Maximum Mana Stolen Per Hit", 0, 0, 0},
&StatProperty{"Minimum Stamina Drain", 0, 0, 0},
&StatProperty{"Maximum Stamina Drain", 0, 0, 0},
&StatProperty{"Stun Length", 0, 0, 0},
&StatProperty{"Velocity Percent", 7, 0, 30},
&StatProperty{"Attack Rate", 7, 0, 30},
&StatProperty{"Other Animation Rate", 0, 0, 0},
&StatProperty{"Quantity", 0, 0, 0},
&StatProperty{"Value", 8, 0, 100},
&StatProperty{"Durability", 9, 0, 0},
&StatProperty{"Maximum Durability", 8, 0, 0},
&StatProperty{"Replenish Life", 6, 0, 30},
&StatProperty{"Enhanced Maximum Durability", 7, 0, 20},
&StatProperty{"Enhanced Life", 6, 0, 10},
&StatProperty{"Enhanced Mana", 6, 0, 10},
&StatProperty{"Attacker Takes Damage", 7, 0, 0},
&StatProperty{"Extra Gold", 9, 0, 100},
&StatProperty{"Better Chance Of Getting Magic Item", 8, 0, 100},
&StatProperty{"Knockback", 7, 0, 0},
&StatProperty{"Time Duration", 9, 0, 20},
&StatProperty{"Class Skills", 3, 3, 0},
&StatProperty{"Unsent Parameter", 0, 0, 0},
&StatProperty{"Add Experience", 9, 0, 50},
&StatProperty{"Life After Each Kill", 7, 0, 0},
&StatProperty{"Reduce Vendor Prices", 7, 0, 0},
&StatProperty{"Double Herb Duration", 1, 0, 0},
&StatProperty{"Light Radius", 4, 0, 4},
&StatProperty{"Light Colour", 24, 0, 0},
&StatProperty{"Reduced Requirements", 8, 0, 100},
&StatProperty{"Reduced Level Requirement", 7, 0, 0},
&StatProperty{"Increased Attack Speed", 7, 0, 20},
&StatProperty{"Reduced Level Requirement (Percent)", 7, 0, 64},
&StatProperty{"Last Block Frame", 0, 0, 0},
&StatProperty{"Faster Run Walk", 7, 0, 20},
&StatProperty{"Non Class Skill", 6, 9, 0},
&StatProperty{"State", 1, 8, 0},
&StatProperty{"Faster Hit Recovery", 7, 0, 20},
&StatProperty{"Monster Player Count", 0, 0, 0},
&StatProperty{"Skill Poison Override Length", 0, 0, 0},
&StatProperty{"Faster Block Rate", 7, 0, 20},
&StatProperty{"Skill Bypass Undead", 0, 0, 0},
&StatProperty{"Skill Bypass Demons", 0, 0, 0},
&StatProperty{"Faster Cast Rate", 7, 0, 20},
&StatProperty{"Skill Bypass Beasts", 0, 0, 0},
&StatProperty{"Single Skill", 3, 9, 0},
&StatProperty{"Slain Monsters Rest In Peace", 1, 0, 0},
&StatProperty{"Curse Resistance", 9, 0, 0},
&StatProperty{"Poison Length Reduction", 8, 0, 20},
&StatProperty{"Adds Damage", 9, 0, 20},
&StatProperty{"Hit Causes Monster To Flee", 7, 0, -1},
&StatProperty{"Hit Blinds Target", 7, 0, 0},
&StatProperty{"Damage To Mana", 6, 0, 0},
&StatProperty{"Ignore Target's Defense", 1, 0, 0},
&StatProperty{"Reduce Target's Defense", 7, 0, 0},
&StatProperty{"Prevent Monster Heal", 7, 0, 0},
&StatProperty{"Half Freeze Duration", 1, 0, 0},
&StatProperty{"To Hit Percent", 9, 0, 20},
&StatProperty{"Monster Defense Reduction per Hit", 7, 0, 128},
&StatProperty{"Damage To Demons", 9, 0, 20},
&StatProperty{"Damage To Undead", 9, 0, 20},
&StatProperty{"Attack Rating Against Demons", 10, 0, 128},
&StatProperty{"Attack Rating Against Undead", 10, 0, 128},
&StatProperty{"Throwable", 1, 0, 0},
&StatProperty{"Elemental Skills", 3, 3, 0},
&StatProperty{"All Skills", 3, 0, 0},
&StatProperty{"Attacker Takes Lightning Damage", 5, 0, 0},
&StatProperty{"Iron Maiden Level", 0, 0, 0},
&StatProperty{"Lifetap Level", 0, 0, 0},
&StatProperty{"Thorns Percent", 0, 0, 0},
&StatProperty{"Bone Armor", 0, 0, 0},
&StatProperty{"Maximum Bone Armor", 0, 0, 0},
&StatProperty{"Freezes Target", 5, 0, 0},
&StatProperty{"Open Wounds", 7, 0, 0},
&StatProperty{"Crushing Blow", 7, 0, 0},
&StatProperty{"Kick Damage", 7, 0, 0},
&StatProperty{"Mana After Each Kill", 7, 0, 0},
&StatProperty{"Life After Each Demon Kill", 7, 0, 0},
&StatProperty{"Extra Blood", 7, 0, 0},
&StatProperty{"Deadly Strike", 7, 0, 0},
&StatProperty{"Fire Absorption (Percent)", 7, 0, 0},
&StatProperty{"Fire Absorption", 7, 0, 0},
&StatProperty{"Lightning Absorption (Percent)", 7, 0, 0},
&StatProperty{"Lightning Absorption", 7, 0, 0},
&StatProperty{"Magic Absorption (Percent)", 7, 0, 0},
&StatProperty{"Magic Absorption", 7, 0, 0},
&StatProperty{"Cold Absorption (Percent)", 7, 0, 0},
&StatProperty{"Cold Absorption", 7, 0, 0},
&StatProperty{"Slows Down Enemies", 7, 0, 0},
&StatProperty{"Aura", 5, 9, 0},
&StatProperty{"Indestructible", 1, 0, 0},
&StatProperty{"Cannot Be Frozen", 1, 0, 0},
&StatProperty{"Stamina Drain (Percent)", 7, 0, 20},
&StatProperty{"Reanimate", 7, 10, 0},
&StatProperty{"Piercing Attack", 7, 0, 0},
&StatProperty{"Fires Magic Arrows", 7, 0, 0},
&StatProperty{"Fire Explosive Arrows", 7, 0, 0},
&StatProperty{"Minimum Throwing Damage", 6, 0, 0},
&StatProperty{"Maximum Throwing Damage", 7, 0, 0},
&StatProperty{"Skill Hand Of Athena", 0, 0, 0},
&StatProperty{"Skill Stamina (Percent)", 0, 0, 0},
&StatProperty{"Skill Passive Stamina (Percent)", 0, 0, 0},
&StatProperty{"Concentration", 0, 0, 0},
&StatProperty{"Enchant", 0, 0, 0},
&StatProperty{"Pierce", 0, 0, 0},
&StatProperty{"Conviction", 0, 0, 0},
&StatProperty{"Chilling Armor", 0, 0, 0},
&StatProperty{"Frenzy", 0, 0, 0},
&StatProperty{"Decrepify", 0, 0, 0},
&StatProperty{"Skill Armor Percent", 0, 0, 0},
&StatProperty{"Alignment", 0, 0, 0},
&StatProperty{"Target 0", 0, 0, 0},
&StatProperty{"Target 1", 0, 0, 0},
&StatProperty{"Gold Lost", 0, 0, 0},
&StatProperty{"Conversion Level", 0, 0, 0},
&StatProperty{"Conversion Maximum Life", 0, 0, 0},
&StatProperty{"Unit Do Overlay", 0, 0, 0},
&StatProperty{"Attack Rating Against Monster Type", 9, 10, 0},
&StatProperty{"Damage To Monster Type", 9, 10, 0},
&StatProperty{"Fade", 3, 0, 0},
&StatProperty{"Armor Override Percent", 0, 0, 0},
&StatProperty{"Unused 183", 0, 0, 0},
&StatProperty{"Unused 184", 0, 0, 0},
&StatProperty{"Unused 185", 0, 0, 0},
&StatProperty{"Unused 186", 0, 0, 0},
&StatProperty{"Unused 187", 0, 0, 0},
&StatProperty{"Skill Tab", 3, 16, 0},
&StatProperty{"Unused 189", 0, 0, 0},
&StatProperty{"Unused 190", 0, 0, 0},
&StatProperty{"Unused 191", 0, 0, 0},
&StatProperty{"Unused 192", 0, 0, 0},
&StatProperty{"Unused 193", 0, 0, 0},
&StatProperty{"Socket Count", 4, 0, 0},
&StatProperty{"Skill On Striking", 7, 16, 0},
&StatProperty{"Skill On Kill", 7, 16, 0},
&StatProperty{"Skill On Death", 7, 16, 0},
&StatProperty{"Skill On Hit", 7, 16, 0},
&StatProperty{"Skill On Level Up", 7, 16, 0},
&StatProperty{"Unused 200", 0, 0, 0},
&StatProperty{"Skill When Struck", 7, 16, 0},
&StatProperty{"Unused 202", 0, 0, 0},
&StatProperty{"Unused 203", 0, 0, 0},
&StatProperty{"Charged", 16, 16, 0},
&StatProperty{"Unused 204", 0, 0, 0},
&StatProperty{"Unused 205", 0, 0, 0},
&StatProperty{"Unused 206", 0, 0, 0},
&StatProperty{"Unused 207", 0, 0, 0},
&StatProperty{"Unused 208", 0, 0, 0},
&StatProperty{"Unused 209", 0, 0, 0},
&StatProperty{"Unused 210", 0, 0, 0},
&StatProperty{"Unused 211", 0, 0, 0},
&StatProperty{"Unused 212", 0, 0, 0},
&StatProperty{"Defense Per Level", 6, 0, 0},
&StatProperty{"Enhanced Defense Per Level", 6, 0, 0},
&StatProperty{"Life Per Level", 6, 0, 0},
&StatProperty{"Mana Per Level", 6, 0, 0},
&StatProperty{"Maximum Damage Per Level", 6, 0, 0},
&StatProperty{"Maximum Enhanced Damage Per Level", 6, 0, 0},
&StatProperty{"Strength Per Level", 6, 0, 0},
&StatProperty{"Dexterity Per Level", 6, 0, 0},
&StatProperty{"Energy Per Level", 6, 0, 0},
&StatProperty{"Vitality Per Level", 6, 0, 0},
&StatProperty{"Attack Rating Per Level", 6, 0, 0},
&StatProperty{"Bonus To Attack Rating Per Level", 6, 0, 0},
&StatProperty{"Maximum Cold Damage Per Level", 6, 0, 0},
&StatProperty{"Maximum Fire Damage Per Level", 6, 0, 0},
&StatProperty{"Maximum Lightning Damage Per Level", 6, 0, 0},
&StatProperty{"Maximum Poison Damage Per Level", 6, 0, 0},
&StatProperty{"Cold Resistance Per Level", 6, 0, 0},
&StatProperty{"Fire Resistance Per Level", 6, 0, 0},
&StatProperty{"Lightning Resistance Per Level", 6, 0, 0},
&StatProperty{"Poison Resistance Per Level", 6, 0, 0},
&StatProperty{"Cold Absorption Per Level", 6, 0, 0},
&StatProperty{"Fire Absorption Per Level", 6, 0, 0},
&StatProperty{"Lightning Absorption Per Level", 6, 0, 0},
&StatProperty{"Poison Absorption Per Level", 6, 0, 0},
&StatProperty{"Thorns Per Level", 5, 0, 0},
&StatProperty{"Extra Gold Per Level", 6, 0, 0},
&StatProperty{"Better Chance Of Getting Magic Item Per Level", 6, 0, 0},
&StatProperty{"Stamina Regeneration Per Level", 6, 0, 0},
&StatProperty{"Stamina Per Level", 6, 0, 0},
&StatProperty{"Damage To Demons Per Level", 6, 0, 0},
&StatProperty{"Damage To Undead Per Level", 6, 0, 0},
&StatProperty{"Attack Rating Against Demons Per Level", 6, 0, 0},
&StatProperty{"Attack Rating Against Undead Per Level", 6, 0, 0},
&StatProperty{"Crushing Blow Per Level", 6, 0, 0},
&StatProperty{"Open Wounds Per Level", 6, 0, 0},
&StatProperty{"Kick Damage Per Level", 6, 0, 0},
&StatProperty{"Deadly Strike Per Level", 6, 0, 0},
&StatProperty{"Find Gems Per Level", 0, 0, 0},
&StatProperty{"Repairs Durability", 6, 0, 0},
&StatProperty{"Replenishes Quantity", 6, 0, 0},
&StatProperty{"Increased Stack Size", 8, 0, 0},
&StatProperty{"Find Item", 0, 0, 0},
&StatProperty{"Slash Damage", 0, 0, 0},
&StatProperty{"Slash Damage (Percent)", 0, 0, 0},
&StatProperty{"Crush Damage", 0, 0, 0},
&StatProperty{"Crush Damage (Percent)", 0, 0, 0},
&StatProperty{"Thrust Damage", 0, 0, 0},
&StatProperty{"Thrust Damage (Percent)", 0, 0, 0},
&StatProperty{"Slash Damage Absorption", 0, 0, 0},
&StatProperty{"Crush Damage Absorption", 0, 0, 0},
&StatProperty{"Thrust Damage Absorption", 0, 0, 0},
&StatProperty{"Slash Damage Absorption (Percent)", 0, 0, 0},
&StatProperty{"Crush Damage Absorption (Percent)", 0, 0, 0},
&StatProperty{"Thrust Damage Absorption (Percent)", 0, 0, 0},
&StatProperty{"Defense Per Time", 22, 0, 0},
&StatProperty{"Enhanced Defense Per Time", 22, 0, 0},
&StatProperty{"Life Per Time", 22, 0, 0},
&StatProperty{"Mana Per Time", 22, 0, 0},
&StatProperty{"Maximum Damage Per Time", 22, 0, 0},
&StatProperty{"Maximum Enhanced Damage Per Time", 22, 0, 0},
&StatProperty{"Strength Per Time", 22, 0, 0},
&StatProperty{"Dexterity Per Time", 22, 0, 0},
&StatProperty{"Energy Per Time", 22, 0, 0},
&StatProperty{"Vitality Per Time", 22, 0, 0},
&StatProperty{"Attack Rating Per Time", 22, 0, 0},
&StatProperty{"Chance To Hit Per Time", 22, 0, 0},
&StatProperty{"Maximum Cold Damage Per Time", 22, 0, 0},
&StatProperty{"Maximum Fire Damage Per Time", 22, 0, 0},
&StatProperty{"Maximum Lightning Damage Per Time", 22, 0, 0},
&StatProperty{"Maximum Damage Per Poison", 22, 0, 0},
&StatProperty{"Cold Resistance Per Time", 22, 0, 0},
&StatProperty{"Fire Resistance Per Time", 22, 0, 0},
&StatProperty{"Lightning Resistance Per Time", 22, 0, 0},
&StatProperty{"Poison Resistance Per Time", 22, 0, 0},
&StatProperty{"Cold Absorption Per Time", 22, 0, 0},
&StatProperty{"Fire Absorption Per Time", 22, 0, 0},
&StatProperty{"Lightning Absorption Per Time", 22, 0, 0},
&StatProperty{"Poison Absorption Per Time", 22, 0, 0},
&StatProperty{"Extra Gold Per Time", 22, 0, 0},
&StatProperty{"Better Chance Of Getting magic Item Per Time", 22, 0, 0},
&StatProperty{"Regenerate Stamina Per Time", 22, 0, 0},
&StatProperty{"Stamina Per Time", 22, 0, 0},
&StatProperty{"Damage To Demons Per Time", 22, 0, 0},
&StatProperty{"Damage To Undead Per Time", 22, 0, 0},
&StatProperty{"Attack Rating Against Demons Per Time", 22, 0, 0},
&StatProperty{"Attack Rating Against Undead Per Time", 22, 0, 0},
&StatProperty{"Crushing Blow Per Time", 22, 0, 0},
&StatProperty{"Open Wounds Per Time", 22, 0, 0},
&StatProperty{"Kick Damage Per Time", 22, 0, 0},