-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmodule_items.py
More file actions
1949 lines (1887 loc) · 173 KB
/
module_items.py
File metadata and controls
1949 lines (1887 loc) · 173 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from module_constants import *
from header_items import *
from header_operations import *
from header_triggers import *
import header_debug as dbg
import header_lazy_evaluation as lazy
####################################################################################################################
# Each item record contains the following fields:
# 1) Item id: used for referencing items in other files.
# The prefix itm_ is automatically added before each item id.
# 2) Item name. Name of item as it'll appear in inventory window
# 3) List of meshes. Each mesh record is a tuple containing the following fields:
# 3.1) Mesh name.
# 3.2) Modifier bits that this mesh matches.
# Note that the first mesh record is the default.
# 4) Item flags. See header_items.py for a list of available flags.
# 5) Item capabilities. Used for which animations this item is used with. See header_items.py for a list of available flags.
# 6) Item value.
# 7) Item stats: Bitwise-or of various stats about the item such as:
# weight, abundance, difficulty, head_armor, body_armor,leg_armor, etc...
# 8) Modifier bits: Modifiers that can be applied to this item.
# 9) [Optional] Triggers: List of simple triggers to be associated with the item.
# 10) [Optional] Factions: List of factions that item can be found as merchandise.
####################################################################################################################
# Some constants for ease of use.
imodbits_none = 0
imodbits_horse_basic = imodbit_swaybacked|imodbit_lame|imodbit_spirited|imodbit_heavy|imodbit_stubborn
imodbits_cloth = imodbit_tattered|imodbit_ragged|imodbit_sturdy|imodbit_thick|imodbit_hardened
imodbits_armor = imodbit_rusty|imodbit_battered|imodbit_crude|imodbit_thick|imodbit_reinforced|imodbit_lordly
imodbits_plate = imodbit_cracked|imodbit_rusty|imodbit_battered|imodbit_crude|imodbit_thick|imodbit_reinforced|imodbit_lordly
imodbits_polearm = imodbit_cracked|imodbit_bent|imodbit_balanced
imodbits_shield = imodbit_cracked|imodbit_battered|imodbit_thick|imodbit_reinforced
imodbits_sword = imodbit_rusty|imodbit_chipped|imodbit_balanced|imodbit_tempered
imodbits_sword_high = imodbit_rusty|imodbit_chipped|imodbit_balanced|imodbit_tempered|imodbit_masterwork
imodbits_axe = imodbit_rusty|imodbit_chipped|imodbit_heavy
imodbits_mace = imodbit_rusty|imodbit_chipped|imodbit_heavy
imodbits_pick = imodbit_rusty|imodbit_chipped|imodbit_balanced|imodbit_heavy
imodbits_bow = imodbit_cracked|imodbit_bent|imodbit_strong|imodbit_masterwork
imodbits_crossbow = imodbit_cracked|imodbit_bent|imodbit_masterwork
imodbits_missile = imodbit_bent|imodbit_large_bag
imodbits_thrown = imodbit_bent|imodbit_heavy|imodbit_balanced|imodbit_large_bag
imodbits_thrown_minus_heavy = imodbit_bent|imodbit_balanced|imodbit_large_bag
imodbits_horse_good = imodbit_spirited|imodbit_heavy
imodbits_good = imodbit_sturdy|imodbit_thick|imodbit_hardened|imodbit_reinforced
imodbits_bad = imodbit_rusty|imodbit_chipped|imodbit_tattered|imodbit_ragged|imodbit_cracked|imodbit_bent
imodbit_female = imodbit_meek
tag_item_class = -100.0
tag_item_herd_animal = -101.0
# Set a class for this item - listed in module_constants prefixed with item_class_ - with an optional associated value.
def itm_class(class_id, value=0):
return (tag_item_class, class_id, value)
# Mark a horse item as a herd animal. Only use for the adult item, not the child.
def itm_herd_animal(child_item=-1, grow_age=10, max_in_herd=20, attack_reaction=animal_reaction_flee, death_sound="snd_cow_slaughter", meat=0, hide=0, wildness=1):
return [[tag_item_herd_animal, child_item, grow_age, max_in_herd, attack_reaction, death_sound, meat, hide, wildness]]
# Display the agent's heraldic banner or color on special item meshes, specifying the appropriate entry from module_tableau_materials.
def init_heraldic_item(tableau):
return [(ti_on_init_item,
[(store_trigger_param_1, ":agent_id"),
(store_trigger_param_2, ":troop_id"),
(call_script, "script_item_set_banner", tableau, ":agent_id", ":troop_id"),
]),
itm_class(item_class_heraldic)]
# Template for faction banner items.
# When adding a new banner texture, remember to add an entry to module_meshes in the correct place, and set an appropriate background color in module_scripts.
def itm_faction_banner(banner_id):
return ["pw_banner_pole_" + banner_id, "Banner", [("pw_banner_pole",0)], itp_type_polearm|itp_two_handed|itp_primary|itp_wooden_parry, itc_parry_polearm|itcf_carry_spear,
1200, weight(7.0)|difficulty(14)|spd_rtng(70)|weapon_length(250)|swing_damage(10, blunt)|thrust_damage(5, blunt), imodbits_none,
[(ti_on_init_item, [(cur_item_set_tableau_material, "tableau_faction_banner_pole", "mesh_banner_" + banner_id)])]]
# Template for castle capture point banner items (display only, not allowing pickup).
def itm_castle_banner(faction, suffix):
return ["pw_banner_castle_" + faction + suffix, "Castle Banner", [("pw_banner_castle",0)], itp_no_pick_up_from_ground, 0,
0, 0, imodbits_none, [(ti_on_init_item, [(cur_item_set_tableau_material, "tableau_castle_banner_" + suffix, faction)])]]
# Template for castle wall banner items (display only, not allowing pickup).
def itm_wall_banner(faction, suffix):
return ["pw_banner_wall_" + faction + suffix, "Wall Banner", [("pw_banner_wall",0)], itp_no_pick_up_from_ground, 0,
0, 0, imodbits_none, [(ti_on_init_item, [(cur_item_set_tableau_material, "tableau_castle_banner_" + suffix, faction)])]]
def itm_throw_wheat_trigger():
return (ti_on_weapon_attack,
[(multiplayer_is_server),
(position_move_x, pos1, -10),
(position_move_y, pos1, 50),
(position_move_z, pos1, -50),
(position_rotate_x, pos1, -30),
(position_rotate_y, pos1, -30),
(particle_system_burst, "psys_throw_wheat", pos1, 50),
])
def itm_read_book_trigger(string_id):
return (ti_on_weapon_attack,
[(store_trigger_param_1, ":agent_id"),
(call_script, "script_cf_read_book", string_id, ":agent_id"),
])
# Swap between different items when swinging, to change visual appearance.
def itm_swap_item_trigger(this_item, other_item):
return (ti_on_weapon_attack,
[(store_trigger_param_1, ":agent_id"),
(assign, ":loop_end", ek_item_3 + 1),
(try_for_range, ":equip_slot", ek_item_0, ":loop_end"),
(agent_get_item_slot, ":equip_item_id", ":agent_id", ":equip_slot"),
(eq, ":equip_item_id", this_item),
(assign, ":loop_end", -1),
(val_add, ":equip_slot", 1),
(agent_unequip_item, ":agent_id", this_item, ":equip_slot"),
(agent_equip_item, ":agent_id", other_item, ":equip_slot"),
(agent_set_wielded_item, ":agent_id", other_item),
(try_end),
])
# Attempt to process a nearby animal when swinging.
def itm_butchering_knife():
return (ti_on_weapon_attack,
[(multiplayer_is_server),
(store_trigger_param_1, ":agent_id"),
(agent_get_troop_id, ":troop_id", ":agent_id"),
(store_skill_level, ":skill", "skl_herding", ":troop_id"),
(gt, ":skill", 0),
(call_script, "script_cf_use_butchering_knife", ":agent_id"),
])
items = [
["no_item", "INVALID ITEM", [("invalid_item", 0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_no_parry, itc_dagger,
0, weight(1)|spd_rtng(1)|weapon_length(1)|swing_damage(1, blunt)|thrust_damage(1, blunt), imodbits_none],
["no_head", "INVALID HEAD", [("invalid_item", 0)], itp_type_head_armor, 0,
0, weight(1)|head_armor(1)|difficulty(0), imodbits_none],
["no_body", "INVALID BODY", [("invalid_item", 0)], itp_type_body_armor, 0,
0, weight(1)|body_armor(1)|difficulty(0), imodbits_none],
["no_foot", "INVALID FOOT", [("invalid_item", 0)], itp_type_foot_armor, 0,
0, weight(1)|leg_armor(1)|difficulty(0), imodbits_none],
["no_hand", "INVALID HAND", [("invalid_item", 0)], itp_type_hand_armor, 0,
0, weight(1)|body_armor(1)|difficulty(0), imodbits_none],
["no_horse", "INVALID HORSE", [("invalid_item", 0)], itp_type_horse, 0,
0, hit_points(1)|body_armor(1)|difficulty(0)|horse_speed(10)|horse_maneuver(40)|horse_charge(1)|horse_scale(1), imodbits_none],
["tattered_headcloth", "Tattered Headcloth", [("headcloth_a_new", 0)], itp_type_head_armor, 0,
14, weight(0.5)|head_armor(3)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_d")],
["ragged_woolen_cap", "Ragged Woolen Cap", [("woolen_cap_new", 0)], itp_type_head_armor, 0,
16, weight(1)|head_armor(4)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_e")],
["stained_felt_hat_b", "Stained Felt Hat", [("felt_hat_b_new", 0)], itp_type_head_armor, 0,
15, weight(1)|head_armor(4)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_b")],
["straw_hat", "Straw Hat", [("straw_hat_new", 0)], itp_type_head_armor, 0,
29, weight(1)|head_armor(2)|difficulty(0), imodbits_cloth],
["head_wrappings", "Head Wrapping", [("head_wrapping", 0)], itp_type_head_armor|itp_fit_to_head, 0,
26, weight(0.25)|head_armor(3), imodbits_cloth],
["headcloth", "Headcloth", [("headcloth_a_new", 0)], itp_type_head_armor, 0,
80, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_d")],
["woolen_cap", "Woolen Cap", [("woolen_cap_new", 0)], itp_type_head_armor, 0,
62, weight(1)|head_armor(6)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_e")],
["sarranid_felt_hat", "Felt Hat", [("sar_helmet3",0)], itp_type_head_armor, 0,
55, weight(1)|head_armor(5)|difficulty(0), imodbits_cloth],
["sarranid_felt_head_cloth", "Head Cloth", [("common_tulbent",0)], itp_type_head_armor|itp_attach_armature, 0,
221, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
["sarranid_felt_head_cloth_b", "Head Cloth", [("common_tulbent_b",0)], itp_type_head_armor|itp_attach_armature, 0,
225, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
["bride_crown", "Crown of Flowers", [("bride_crown",0)], itp_type_head_armor|itp_doesnt_cover_hair|itp_attach_armature, 0,
302, weight(0.5)|head_armor(0)|difficulty(0), imodbits_cloth|imodbit_female],
["khergit_lady_hat", "Blue Head Scarf", [("khergit_lady_hat",0)], itp_type_head_armor|itp_doesnt_cover_hair|itp_fit_to_head, 0,
239, weight(0.5)|head_armor(1)|difficulty(0), imodbits_cloth|imodbit_female],
["khergit_lady_hat_b", "Leather Head Scarf", [("khergit_lady_hat_b",0)], itp_type_head_armor|itp_doesnt_cover_hair|itp_fit_to_head, 0,
267, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
["sarranid_head_cloth", "Lady Head Cloth", [("tulbent",0)], itp_type_head_armor|itp_doesnt_cover_hair|itp_attach_armature, 0,
321, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
["sarranid_head_cloth_b", "Lady Head Cloth", [("tulbent_b",0)], itp_type_head_armor|itp_doesnt_cover_hair|itp_attach_armature, 0,
340, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
["wimple_a", "Wimple", [("wimple_a_new",0)], itp_type_head_armor|itp_fit_to_head, 0,
230, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
["wimple_b", "Wimple", [("wimple_b_new",0)], itp_type_head_armor|itp_fit_to_head, 0,
230, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
["barbette", "Barbette", [("barbette_new",0)], itp_type_head_armor|itp_fit_to_head, 0,
403, weight(1.0)|head_armor(8)|difficulty(0), imodbits_cloth|imodbit_female],
["arming_cap", "Arming Cap", [("arming_cap_a_new", 0)], itp_type_head_armor, 0,
78, weight(1)|head_armor(7)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_d")],
["ladys_hood", "Woolen Hood", [("ladys_hood_new", 0)], itp_type_head_armor, 0,
120, weight(1)|head_armor(8)|difficulty(0), imodbits_cloth],
["fur_hat", "Fur Hat", [("fur_hat_a_new", 0)], itp_type_head_armor, 0,
110, weight(0.5)|head_armor(8)|difficulty(0), imodbits_cloth],
["felt_hat", "Felt Hat", [("felt_hat_a_new", 0)], itp_type_head_armor, 0,
74, weight(1)|head_armor(8)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_b")],
["felt_hat_b", "Felt Hat", [("felt_hat_b_new", 0)], itp_type_head_armor, 0,
85, weight(1)|head_armor(8)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_b")],
["leather_cap", "Leather Cap", [("leather_cap_a_new", 0)], itp_type_head_armor, 0,
106, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth],
["common_hood", "Hood", [("hood_new", 0)], itp_type_head_armor, 0,
129, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_e")],
["hood_b", "Hood", [("hood_b", 0)], itp_type_head_armor, 0,
116, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth],
["hood_c", "Hood", [("hood_c", 0)], itp_type_head_armor, 0,
124, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth],
["hood_d", "Hood", [("hood_d", 0)], itp_type_head_armor, 0,
131, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth],
["nomad_cap", "Nomad Cap", [("nomad_cap_a_new", 0)], itp_type_head_armor, 0,
272, weight(2.25)|head_armor(15)|difficulty(8), imodbits_cloth],
["nomad_cap_b", "Nomad Cap", [("nomad_cap_b_new",0)], itp_type_head_armor, 0,
243, weight(0.75)|head_armor(13)|difficulty(0), imodbits_cloth],
["black_hood", "Black Hood", [("hood_black",0)], itp_type_head_armor, 0,
143, weight(2)|head_armor(11)|difficulty(0), imodbits_cloth],
["surgeon_coif", "Surgeon's Coif", [("pw_surgeon_coif",0)], itp_type_head_armor, 0,
182, weight(1.5)|head_armor(10)|difficulty(0), imodbits_cloth],
["pilgrim_hood", "Pilgrim Hood", [("pilgrim_hood",0)], itp_type_head_armor, 0,
123, weight(1.25)|head_armor(11)|difficulty(0), imodbits_cloth],
["priest_coif", "Priestly Coif", [("pw_priest_coif",0)], itp_type_head_armor, 0,
265, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth],
["padded_coif", "Padded Coif", [("padded_coif_a_new", 0)], itp_type_head_armor, 0,
116, weight(1)|head_armor(11)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_b")],
["turban", "Turban", [("tuareg_open",0)], itp_type_head_armor, 0,
143, weight(2)|head_armor(11)|difficulty(0), imodbits_cloth],
["leather_steppe_cap_a", "Steppe Cap", [("leather_steppe_cap_a_new",0)], itp_type_head_armor, 0,
203, weight(1)|head_armor(12)|difficulty(7), imodbits_cloth],
["leather_steppe_cap_b", "Steppe Cap", [("tattered_steppe_cap_b_new",0)], itp_type_head_armor, 0,
234, weight(1)|head_armor(14)|difficulty(7), imodbits_cloth],
["nordic_archer_helmet", "Leather Helmet", [("Helmet_A_vs2",0)], itp_type_head_armor, 0,
240, weight(1.25)|head_armor(14)|difficulty(7), imodbits_plate],
["vaegir_fur_cap", "Cap with Fur", [("vaeg_helmet3",0)], itp_type_head_armor, 0,
250, weight(2)|head_armor(15)|difficulty(7), imodbits_plate],
["steppe_cap", "Steppe Cap", [("steppe_cap_a_new", 0)], itp_type_head_armor, 0,
276, weight(1)|head_armor(16)|difficulty(7), imodbits_cloth],
["leather_warrior_cap", "Leather Warrior Cap", [("skull_cap_new_b",0)], itp_type_head_armor, 0,
340, weight(1)|head_armor(18)|difficulty(7), imodbits_cloth],
["sarranid_warrior_cap", "Turban with Warrior Cap", [("tuareg_helmet",0)], itp_type_head_armor|itp_covers_beard, 0,
344, weight(2)|head_armor(19)|difficulty(7), imodbits_plate],
["nordic_veteran_archer_helmet", "Leather Helmet", [("Helmet_A",0)], itp_type_head_armor, 0,
356, weight(1.5)|head_armor(20)|difficulty(7), imodbits_plate],
["skullcap", "Skullcap", [("skull_cap_new_a",0)], itp_type_head_armor, 0,
376, weight(1.0)|head_armor(20)|difficulty(7), imodbits_plate],
["vaegir_fur_helmet", "Fur Helmet", [("vaeg_helmet2",0)], itp_type_head_armor, 0,
395, weight(1.5)|head_armor(21)|difficulty(7), imodbits_plate],
["bishop_mitre", "Bishop's Mitre", [("pw_bishop_mitre",0)], itp_type_head_armor, 0,
546, weight(1.5)|head_armor(13)|difficulty(8), imodbits_cloth],
["mail_coif", "Mail Coif", [("mail_coif_new",0)], itp_type_head_armor, 0,
403, weight(1.25)|head_armor(22)|difficulty(9), imodbits_armor],
["footman_helmet", "Footman's Helmet", [("skull_cap_new",0)], itp_type_head_armor, 0,
495, weight(1.5)|head_armor(24)|difficulty(9), imodbits_plate],
["sarranid_horseman_helmet", "Horseman Helmet", [("sar_helmet2",0)], itp_type_head_armor, 0,
580, weight(2)|head_armor(25)|difficulty(9), imodbits_plate],
["nasal_helmet", "Nasal Helmet", [("nasal_helmet_b",0)], itp_type_head_armor, 0,
605, weight(1.25)|head_armor(26)|difficulty(9), imodbits_plate],
["norman_helmet", "Helmet with Cap", [("norman_helmet_a",0)], itp_type_head_armor|itp_fit_to_head, 0,
654, weight(1.25)|head_armor(28)|difficulty(9), imodbits_plate],
["nordic_footman_helmet", "Footman Helmet", [("Helmet_B_vs2",0)], itp_type_head_armor|itp_fit_to_head, 0,
670, weight(1.75)|head_armor(30)|difficulty(9), imodbits_plate],
["khergit_war_helmet", "War Helmet", [("tattered_steppe_cap_a_new",0)], itp_type_head_armor, 0,
710, weight(2)|head_armor(31)|difficulty(9), imodbits_plate],
["segmented_helmet", "Segmented Helmet", [("segmented_helm_new",0)], itp_type_head_armor, 0,
724, weight(1.25)|head_armor(31)|difficulty(9), imodbits_plate],
["vaegir_spiked_helmet", "Spiked Cap", [("vaeg_helmet1",0)], itp_type_head_armor, 0,
823, weight(2)|head_armor(32)|difficulty(9), imodbits_plate],
["helmet_with_neckguard", "Helmet with Neckguard", [("neckguard_helm_new",0)], itp_type_head_armor, 0,
840, weight(1.5)|head_armor(33)|difficulty(10), imodbits_plate],
["flat_topped_helmet", "Flat Topped Helmet", [("flattop_helmet_new",0)], itp_type_head_armor, 0,
869, weight(1.75)|head_armor(33)|difficulty(10), imodbits_plate],
["nordic_fighter_helmet", "Fighter Helmet", [("Helmet_B",0)], itp_type_head_armor|itp_fit_to_head, 0,
912, weight(2)|head_armor(34)|difficulty(10), imodbits_plate],
["kettle_hat", "Kettle Hat", [("kettle_hat_new",0)], itp_type_head_armor, 0,
940, weight(1.75)|head_armor(35)|difficulty(10), imodbits_plate],
["sarranid_helmet1", "Keffiyeh Helmet", [("sar_helmet1",0)], itp_type_head_armor, 0,
923, weight(2)|head_armor(35)|difficulty(11), imodbits_plate],
["vaegir_lamellar_helmet", "Helmet with Lamellar Guard", [("vaeg_helmet4",0)], itp_type_head_armor, 0,
960, weight(2)|head_armor(38)|difficulty(11), imodbits_plate],
["spiked_helmet", "Spiked Helmet", [("spiked_helmet_new",0)], itp_type_head_armor, 0,
1078, weight(2)|head_armor(38)|difficulty(11), imodbits_plate],
["sarranid_mail_coif", "Mail Coif", [("tuareg_helmet2",0)], itp_type_head_armor, 0,
1230, weight(2)|head_armor(39)|difficulty(13), imodbits_plate],
["nordic_huscarl_helmet", "Huscarl's Helmet", [("Helmet_C_vs2",0)], itp_type_head_armor, 0,
1420, weight(2)|head_armor(40)|difficulty(14), imodbits_plate],
["bascinet", "Bascinet", [("bascinet_avt_new",0)], itp_type_head_armor, 0,
1579, weight(2)|head_armor(42)|difficulty(14), imodbits_plate],
["bascinet_2", "Bascinet with Aventail", [("bascinet_new_a",0)], itp_type_head_armor, 0,
1654, weight(2.25)|head_armor(44)|difficulty(14), imodbits_plate],
["bascinet_3", "Bascinet with Nose Guard", [("bascinet_new_b",0)], itp_type_head_armor, 0,
1683, weight(2.5)|head_armor(45)|difficulty(14), imodbits_plate],
["vaegir_noble_helmet", "Nobleman Helmet", [("vaeg_helmet7",0)], itp_type_head_armor, 0,
1710, weight(2)|head_armor(45)|difficulty(14), imodbits_plate],
["guard_helmet", "Guard Helmet", [("reinf_helmet_new",0)], itp_type_head_armor, 0,
2355, weight(2.5)|head_armor(47)|difficulty(15), imodbits_plate],
["sarranid_veiled_helmet", "Veiled Helmet", [("sar_helmet4",0)], itp_type_head_armor|itp_covers_beard, 0,
2341, weight(3)|head_armor(47)|difficulty(15), imodbits_plate],
["vaegir_war_helmet", "War Helmet", [("vaeg_helmet6",0)], itp_type_head_armor, 0,
2420, weight(2.25)|head_armor(47)|difficulty(15), imodbits_plate],
["nordic_warlord_helmet", "Warlord Helmet", [("Helmet_C",0)], itp_type_head_armor, 0,
3180, weight(2.25)|head_armor(48)|difficulty(15), imodbits_plate],
["bishop_helm", "Bishop's Helm", [("pw_bishop_helm",0)], itp_type_head_armor|itp_covers_head, 0,
6034, weight(3.0)|head_armor(49)|difficulty(15), imodbits_plate],
["full_helm", "Full Helm", [("great_helmet_new_b",0)], itp_type_head_armor|itp_covers_head, 0,
5121, weight(2.5)|head_armor(51)|difficulty(15), imodbits_plate],
["vaegir_mask", "War Mask", [("vaeg_helmet8",0)], itp_type_head_armor, 0,
6950, weight(2.5)|head_armor(50)|difficulty(15), imodbits_plate],
["vaegir_mask_b", "War Mask", [("vaeg_helmet9",0)], itp_type_head_armor|itp_covers_beard, 0,
7012, weight(2.75)|head_armor(52)|difficulty(15), imodbits_plate],
["great_helmet", "Great Helmet", [("great_helmet_new",0)], itp_type_head_armor|itp_covers_head, 0,
7380, weight(2.75)|head_armor(53)|difficulty(15), imodbits_plate],
["winged_great_helmet", "Winged Great Helmet", [("maciejowski_helmet_new",0)], itp_type_head_armor|itp_covers_head, 0,
9240, weight(2.75)|head_armor(55)|difficulty(15), imodbits_plate],
["black_helmet", "Black Helmet", [("black_helm",0)], itp_type_head_armor, 0,
9638, weight(1)|head_armor(100)|difficulty(20), imodbits_plate],
["crown", "Crown", [("crown", 0)], itp_type_head_armor|itp_doesnt_cover_hair|itp_fit_to_head, 0,
13400, weight(1)|head_armor(10)|difficulty(0), imodbits_plate],
["bejeweled_crown", "Bejeweled Crown", [("bejeweled_crown", 0)], itp_type_head_armor|itp_doesnt_cover_hair|itp_fit_to_head, 0,
13400, weight(1)|head_armor(10)|difficulty(0), imodbits_plate],
["brown_assassin_cape", "Brown Assassin Cape", [("brown_assassin_cape",0)], itp_type_head_armor, 0,
180, weight(2)|head_armor(11)|difficulty(0), imodbits_cloth],
["green_assassin_cape", "Green Assassin Cape", [("green_assassin_cape",0)], itp_type_head_armor, 0,
180, weight(2)|head_armor(11)|difficulty(0), imodbits_cloth],
["white_assassin_cape", "White Assassin Cape", [("white_assassin_cape",0)], itp_type_head_armor, 0,
180, weight(2)|head_armor(11)|difficulty(0), imodbits_cloth],
["tourney_helm_yellow", "Tourney Helm Yellow", [("tourney_helmY",0)], itp_type_head_armor|itp_covers_head,0,
620, weight(1.5)|head_armor(30)|difficulty(8), imodbits_plate],
["helm_saracin_c", "Saracen Helmet with Leather", [("helm_saracin_c",0)], itp_type_head_armor, 0,
840, weight(1.6)|head_armor(33)|difficulty(10), imodbits_plate],
["sar_infantry_helmet1", "Saracen Helmet with Mail", [("sar_infantry_helmet1",0)], itp_type_head_armor, 0,
880, weight(1.7)|head_armor(34)|difficulty(10), imodbits_plate],
["chapel_de_fer_cloth2", "Chapel De Fer with Cloth", [("chapel_de_fer_cloth2",0),("inv_chapel_de_fer_cloth2", ixmesh_inventory)], itp_type_head_armor|itp_attach_armature, 0,
960, weight(1.8)|head_armor(35)|difficulty(10), imodbits_plate],
["gnezdovo_helm_a", "Gnezdovo Helmet", [("gnezdovo_helm_a",0),("inv_gnezdovo_helm_a", ixmesh_inventory)], itp_type_head_armor|itp_fit_to_head|itp_covers_beard|itp_attach_armature, 0,
1050, weight(1.9)|head_armor(37)|difficulty(12), imodbits_plate],
["north_helmet", "Bascinet", [("north_helmet",0)], itp_type_head_armor, 0,
1150, weight(1.9)|head_armor(38)|difficulty(12), imodbits_plate],
["north_noseguard", "Sallet", [("north_noseguard",0)], itp_type_head_armor, 0,
1180, weight(1.9)|head_armor(38)|difficulty(12), imodbits_plate],
["barbuta1", "Barbuta", [("barbuta1",0)], itp_type_head_armor, 0,
1370, weight(2.0)|head_armor(39)|difficulty(14), imodbits_plate],
["rus_helm", "Rus Helmet", [("rus_helm",0)], itp_type_head_armor|itp_fit_to_head, 0,
1380, weight(2.0)|head_armor(40)|difficulty(14), imodbits_plate],
["helm_saracin_j", "Decorated Saracen Helmet with Mail", [("helm_saracin_j",0),("inv_helm_saracin_j", ixmesh_inventory)], itp_type_head_armor|itp_covers_beard|itp_attach_armature, 0,
1390, weight(2.0)|head_armor(40)|difficulty(14), imodbits_plate],
["dejawolf_kettlehat_1", "Reinforced Kattlehat", [("dejawolf_kettlehat_1",0)], itp_type_head_armor, 0,
1420, weight(2.0)|head_armor(41)|difficulty(14), imodbits_plate],
["chapel_de_fer_mail2", "Chapel De Fer with Mail", [("chapel_de_fer_mail2",0),("inv_chapel_de_fer_mail2", ixmesh_inventory)], itp_type_head_armor|itp_attach_armature, 0,
1455, weight(2.1)|head_armor(42)|difficulty(14), imodbits_plate],
["chapel_de_fer_mail3", "Chapel De Fer with Mail", [("chapel_de_fer_mail3",0),("inv_chapel_de_fer_mail3", ixmesh_inventory)], itp_type_head_armor|itp_attach_armature, 0,
1460, weight(2.1)|head_armor(42)|difficulty(14), imodbits_plate],
["open_salet_coif", "Open Sallet with Coif", [("open_salet_coif",0),("inv_open_salet_coif", ixmesh_inventory)], itp_type_head_armor|itp_attach_armature, 0,
1510, weight(2.1)|head_armor(43)|difficulty(14), imodbits_plate],
["tagancha_helm_a", "Open Tagancha", [("tagancha_helm_a",0)], itp_type_head_armor|itp_fit_to_head, 0,
1530, weight(2.3)|head_armor(43)|difficulty(14), imodbits_plate],
["zitta_bascinet_novisor", "Zitta Bascinet without Visor", [("zitta_bascinet_novisor",0),("inv_zitta_bascinet_novisor", ixmesh_inventory)], itp_type_head_armor|itp_fit_to_head|itp_attach_armature, 0,
1590, weight(2.2)|head_armor(44)|difficulty(14), imodbits_plate],
["prato_chapel_de_fer", "Prato Chapel De Fer", [("prato_chapel_de_fer",0)], itp_type_head_armor, 0,
1650, weight(2.2)|head_armor(45)|difficulty(14), imodbits_plate],
["gulam_helm_c_market", "Gulam Helmet with Blue Cloth", [("gulam_helm_c_market",0),("inv_gulam_helm_c_market", ixmesh_inventory)], itp_type_head_armor|itp_attach_armature, 0,
1740, weight(2.2)|head_armor(45)|difficulty(14), imodbits_plate],
["gulam_helm_b_market", "Gulam Helmet with Red Cloth", [("gulam_helm_b_market",0)], itp_type_head_armor, 0,
1750, weight(2.2)|head_armor(45)|difficulty(14), imodbits_plate],
["nikolskoe_helm", "Nikolskoe Helmet", [("nikolskoe_helm",0)], itp_type_head_armor|itp_fit_to_head|itp_covers_beard, 0,
1880, weight(2.5)|head_armor(45)|difficulty(14), imodbits_plate],
["gulam_helm_a", "Gulam Helmet", [("gulam_helm_a",0)], itp_type_head_armor, 0,
2030, weight(2.3)|head_armor(46)|difficulty(15), imodbits_plate],
["tagancha_helm_b", "Tagancha", [("tagancha_helm_b",0)], itp_type_head_armor|itp_fit_to_head|itp_covers_beard, 0,
2930, weight(2.5)|head_armor(48)|difficulty(15), imodbits_plate],
["novogrod_helm", "Novogrod Helmet", [("novogrod_helm",0)], itp_type_head_armor|itp_fit_to_head|itp_covers_beard, 0,
3220, weight(2.5)|head_armor(48)|difficulty(15), imodbits_plate],
["visored_salet", "Visored Sallet", [("visored_salet",0)], itp_type_head_armor, 0,
3380, weight(2.3)|head_armor(48)|difficulty(15), imodbits_plate],
["visored_salet_coif", "Visored Sallet with Coif", [("visored_salet_coif",0)], itp_type_head_armor|itp_covers_beard, 0,
3940, weight(2.5)|head_armor(49)|difficulty(15), imodbits_plate],
["north_aventail", "Open Sallet", [("north_aventail",0)], itp_type_head_armor, 0,
4610, weight(2.5)|head_armor(50)|difficulty(15), imodbits_plate],
["north_bascinet", "Closed Sallet", [("north_bascinet",0)], itp_type_head_armor, 0,
4610, weight(2.5)|head_armor(50)|difficulty(15), imodbits_plate],
["north_sallet", "Open Sallet with Neckguard", [("north_sallet",0),("inv_north_sallet", ixmesh_inventory)], itp_type_head_armor|itp_attach_armature, 0,
5560, weight(2.5)|head_armor(51)|difficulty(15), imodbits_plate],
["north_neckguard", "Sallet with Neckguard", [("north_neckguard",0),("inv_north_neckguard", ixmesh_inventory)], itp_type_head_armor|itp_covers_beard|itp_attach_armature, 0,
5560, weight(2.5)|head_armor(51)|difficulty(15), imodbits_plate],
["litchina_helm", "Litchina Helmet", [("litchina_helm",0),("inv_litchina_helm", ixmesh_inventory)], itp_type_head_armor|itp_fit_to_head|itp_covers_beard|itp_attach_armature, 0,
6030, weight(2.5)|head_armor(51)|difficulty(15), imodbits_plate],
["gulam_helm_f_market", "Decorated Gulam Helm", [("gulam_helm_f_market",0)], itp_type_head_armor|itp_fit_to_head, 0,
6240, weight(2.5)|head_armor(51)|difficulty(15), imodbits_plate],
["hounskull", "Hounskull Helmet", [("hounskull",0)], itp_type_head_armor|itp_covers_head, 0,
6310, weight(2.5)|head_armor(51)|difficulty(15), imodbits_plate],
["zitta_bascinet_open", "Open Zitta Bascinet", [("zitta_bascinet_open",0),("inv_zitta_bascinet_open", ixmesh_inventory)], itp_type_head_armor|itp_attach_armature, 0,
6470, weight(2.5)|head_armor(51)|difficulty(15), imodbits_plate],
["zitta_bascinet", "Zitta Bascinet", [("zitta_bascinet",0),("inv_zitta_bascinet", ixmesh_inventory)], itp_type_head_armor|itp_covers_head|itp_attach_armature, 0,
6470, weight(2.5)|head_armor(51)|difficulty(15), imodbits_plate],
["pigface_klappvisor_open", "Open Pigface Helmet", [("pigface_klappvisor_open",0),("inv_pigface_klappvisor_open", ixmesh_inventory)], itp_type_head_armor|itp_attach_armature, 0,
6680, weight(2.8)|head_armor(52)|difficulty(15), imodbits_plate],
["pigface_klappvisor", "Pigface Helmet", [("pigface_klappvisor",0),("inv_pigface_klappvisor", ixmesh_inventory)], itp_type_head_armor|itp_covers_head|itp_attach_armature, 0,
6680, weight(2.8)|head_armor(52)|difficulty(15), imodbits_plate],
["klappvisier_open", "Open Klappvisier", [("klappvisier_open",0),("inv_klappvisier_open", ixmesh_inventory)], itp_type_head_armor|itp_attach_armature, 0,
7040, weight(2.8)|head_armor(52)|difficulty(15), imodbits_plate],
["klappvisier", "Klappvisier", [("klappvisier",0),("inv_klappvisier", ixmesh_inventory)], itp_type_head_armor|itp_covers_head|itp_attach_armature, 0,
7040, weight(2.8)|head_armor(52)|difficulty(15), imodbits_plate],
["dejawolf_sallet", "Milanese Helmet", [("dejawolf_sallet",0)], itp_type_head_armor|itp_covers_head, 0,
7280, weight(2.8)|head_armor(53)|difficulty(15), imodbits_plate],
["sugarloaf", "Sugarloaf", [("sugarloaf",0)], itp_type_head_armor|itp_covers_head, 0,
7340, weight(2.8)|head_armor(53)|difficulty(15), imodbits_plate],
["helm_sultan_saracens_market", "Sultan Helmet", [("helm_sultan_saracens_market",0),("inv_helm_sultan_saracens_market", ixmesh_inventory)], itp_type_head_armor|itp_fit_to_head|itp_attach_armature, 0,
8650, weight(2.8)|head_armor(54)|difficulty(15), imodbits_plate],
["flemish_armet", "Flemish Armet", [("flemish_armet",0)], itp_type_head_armor|itp_covers_head, 0,
9120, weight(2.8)|head_armor(55)|difficulty(15), imodbits_plate],
["greatbascinet1", "Great Bascinet", [("greatbascinet1",0),("inv_greatbascinet1", ixmesh_inventory)], itp_type_head_armor|itp_covers_head|itp_attach_armature, 0,
9170, weight(2.8)|head_armor(55)|difficulty(15), imodbits_plate],
["greathelm1", "Greathelm with Bascinet", [("greathelm1",0)], itp_type_head_armor|itp_covers_head, 0,
9210, weight(2.8)|head_armor(55)|difficulty(15), imodbits_plate],
["weimarhelm", "Weimar Helmet", [("weimarhelm",0),("inv_weimarhelm", ixmesh_inventory)], itp_type_head_armor|itp_covers_head|itp_attach_armature, 0,
9250, weight(2.8)|head_armor(55)|difficulty(15), imodbits_plate],
["ragged_shirt", "Ragged Shirt", [("shirt", 0)], itp_type_body_armor|itp_covers_legs, 0,
2, weight(1)|body_armor(2)|difficulty(0), imodbits_cloth],
["old_coarse_tunic", "Old Coarse Tunic", [("coarse_tunic", 0)], itp_type_body_armor|itp_covers_legs, 0,
23, weight(2)|body_armor(7)|leg_armor(4)|difficulty(0), imodbits_cloth],
["old_linen_tunic", "Old Linen Tunic", [("linen_tunic", 0)], itp_type_body_armor|itp_covers_legs, 0,
10, weight(1)|body_armor(4)|leg_armor(1)|difficulty(0), imodbits_cloth],
["ragged_leather_apron", "Ragged Leather Apron", [("leather_apron", 0)], itp_type_body_armor|itp_covers_legs, 0,
27, weight(2.5)|body_armor(6)|leg_armor(5)|difficulty(0), imodbits_cloth],
["old_tabard", "Old Tabard", [("tabard_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
31, weight(3)|body_armor(8)|leg_armor(4)|difficulty(0), imodbits_cloth],
["shirt", "Shirt", [("shirt", 0)], itp_type_body_armor|itp_covers_legs, 0,
45, weight(1)|body_armor(5)|difficulty(0), imodbits_cloth],
["linen_tunic", "Linen Tunic", [("shirt_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
60, weight(1)|body_armor(6)|leg_armor(1)|difficulty(0), imodbits_cloth],
["black_robe", "Black Robe", [("robe",0)], itp_type_body_armor|itp_covers_legs, 0,
43, weight(3.5)|body_armor(8)|leg_armor(6)|difficulty(0), imodbits_cloth],
["dress", "Dress", [("dress",0)], itp_type_body_armor|itp_covers_legs, 0,
60, weight(3)|body_armor(6)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
["blue_dress", "Blue Dress", [("blue_dress_new",0)], itp_type_body_armor|itp_covers_legs, 0,
76, weight(3)|body_armor(6)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
["peasant_dress", "Peasant Dress", [("peasant_dress_b_new",0)], itp_type_body_armor|itp_covers_legs, 0,
83, weight(3)|body_armor(6)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
["woolen_dress", "Woolen Dress", [("woolen_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
100, weight(3.75)|body_armor(8)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
["sarranid_common_dress", "Gray Dress", [("sarranid_common_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
80, weight(5)|body_armor(5)|leg_armor(5)|difficulty(0), imodbits_cloth|imodbit_female],
["sarranid_common_dress_b", "Brown Dress", [("sarranid_common_dress_b",0)], itp_type_body_armor|itp_covers_legs, 0,
102, weight(5)|body_armor(6)|leg_armor(5)|difficulty(0), imodbits_cloth|imodbit_female],
["lady_dress_ruby", "Red Dress", [("lady_dress_r",0)], itp_type_body_armor|itp_covers_legs, 0,
200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
["lady_dress_green", "Green Dress", [("lady_dress_g",0)], itp_type_body_armor|itp_covers_legs, 0,
200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
["lady_dress_blue", "Blue Dress", [("lady_dress_b",0)], itp_type_body_armor|itp_covers_legs, 0,
200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
["court_dress", "Red Pattern Dress", [("court_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
["red_dress", "Red Dress", [("red_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
["brown_dress", "Brown Dress", [("brown_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
["green_dress", "Green Dress", [("green_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
["sarranid_lady_dress", "Purple Dress", [("sarranid_lady_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
["sarranid_lady_dress_b", "Orange Dress", [("sarranid_lady_dress_b",0)], itp_type_body_armor|itp_covers_legs, 0,
200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
["khergit_lady_dress", "Blue Dress", [("khergit_lady_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
["khergit_lady_dress_b", "Leather Dress", [("khergit_lady_dress_b",0)], itp_type_body_armor|itp_covers_legs, 0,
500, weight(3)|body_armor(15)|leg_armor(20)|difficulty(8), imodbits_cloth|imodbit_female],
["bride_dress", "Bride Dress", [("bride_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
2500, weight(3)|body_armor(3)|leg_armor(1)|difficulty(0), imodbits_cloth|imodbit_female],
["tunic_with_green_cape", "Tunic with Green Cape", [("peasant_man_a",0)], itp_type_body_armor|itp_covers_legs, 0,
220, weight(1)|body_armor(12)|leg_armor(4)|difficulty(0), imodbits_cloth],
["rough_tunic", "Rough Tunic", [("pw_rough_tunic",0)], itp_type_body_armor|itp_covers_legs, 0,
134, weight(1)|body_armor(7)|leg_armor(1)|difficulty(0), imodbits_cloth],
["red_shirt", "Red Shirt", [("rich_tunic_a",0)], itp_type_body_armor|itp_covers_legs, 0,
150, weight(1)|body_armor(7)|leg_armor(1)|difficulty(0), imodbits_cloth],
["pelt_coat", "Pelt Coat", [("thick_coat_a",0)], itp_type_body_armor|itp_covers_legs, 0,
193, weight(2)|body_armor(11)|leg_armor(3)|difficulty(0), imodbits_cloth],
["sarranid_cloth_robe", "Worn Robe", [("sar_robe",0)], itp_type_body_armor|itp_covers_legs, 0,
233, weight(4)|body_armor(9)|leg_armor(9)|difficulty(0), imodbits_cloth],
["sarranid_cloth_robe_b", "Worn Robe", [("sar_robe_b",0)], itp_type_body_armor|itp_covers_legs, 0,
237, weight(4)|body_armor(9)|leg_armor(9)|difficulty(0), imodbits_cloth],
["rawhide_coat", "Rawhide Coat", [("coat_of_plates_b", 0)], itp_type_body_armor|itp_covers_legs, 0,
220, weight(5)|body_armor(13)|difficulty(0), imodbits_cloth],
["coarse_tunic", "Tunic with Vest", [("coarse_tunic_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
87, weight(2)|body_armor(11)|leg_armor(6)|difficulty(0), imodbits_cloth],
["leather_apron", "Leather Apron", [("leather_apron", 0)], itp_type_body_armor|itp_covers_legs, 0,
125, weight(3)|body_armor(12)|leg_armor(7)|difficulty(0), imodbits_cloth],
["fur_coat", "Fur Coat", [("fur_coat", 0)], itp_type_body_armor|itp_covers_legs, 0,
257, weight(6)|body_armor(13)|leg_armor(6)|difficulty(0), imodbits_armor],
["friar_robe", "Friar's Robe", [("pw_friar_robe", 0)], itp_type_body_armor|itp_covers_legs, 0,
342, weight(8)|body_armor(14)|leg_armor(12)|difficulty(0), imodbits_cloth],
["skirmisher_armor", "Skirmisher Armor", [("skirmisher_armor",0)], itp_type_body_armor|itp_covers_legs, 0,
374, weight(3)|body_armor(15)|leg_armor(7)|difficulty(6), imodbits_cloth],
["rich_outfit", "Rich Outfit", [("merchant_outf",0)], itp_type_body_armor|itp_covers_legs, 0,
348, weight(4)|body_armor(16)|leg_armor(4)|difficulty(0), imodbits_cloth],
["tabard", "Tabard", [("tabard_b", 0)], itp_type_body_armor|itp_covers_legs, 0,
230, weight(3)|body_armor(14)|leg_armor(6)|difficulty(6), imodbits_cloth, init_heraldic_item("tableau_heraldic_tabard_b")],
["khergit_armor", "Tribesman Armor", [("khergit_armor_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
380, weight(2)|body_armor(14)|difficulty(7), imodbits_cloth],
["leather_vest_plain", "Leather Vest", [("leather_vest_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
370, weight(4)|body_armor(15)|leg_armor(7)|difficulty(7), imodbits_cloth],
["leather_vest", "Heraldic Leather Vest", [("leather_vest_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
377, weight(4)|body_armor(15)|leg_armor(7)|difficulty(7), imodbits_cloth, init_heraldic_item("tableau_heraldic_leather_vest_a")],
["leather_jacket", "Leather Jacket", [("leather_jacket_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
400, weight(3)|body_armor(15)|difficulty(8), imodbits_cloth],
["priest_robe", "Priestly Robes", [("pw_priest_robe", 0)], itp_type_body_armor|itp_covers_legs, 0,
453, weight(10)|body_armor(17)|leg_armor(13)|difficulty(8), imodbits_cloth],
["arena_tunic", "Arena Tunic", [("arena_tunicW_new",0)], itp_type_body_armor|itp_covers_legs, 0,
473, weight(4)|body_armor(16)|leg_armor(6)|difficulty(8), imodbits_cloth, init_heraldic_item("tableau_colored_arena_tunic")],
["steppe_armor", "Leather Breastplate", [("lamellar_leather",0)], itp_type_body_armor|itp_covers_legs, 0,
430, weight(5)|body_armor(16)|leg_armor(8)|difficulty(8), imodbits_cloth, init_heraldic_item("tableau_colored_lamellar_leather")],
["leather_armor", "Leather Armor", [("tattered_leather_armor_a",0)], itp_type_body_armor|itp_covers_legs, 0,
450, weight(7)|body_armor(18)|difficulty(8), imodbits_cloth],
["pilgrim_disguise", "Pilgrim Disguise", [("pilgrim_outfit",0)], itp_type_body_armor|itp_covers_legs, 0,
710, weight(2)|body_armor(19)|leg_armor(8)|difficulty(8), imodbits_cloth],
["red_gambeson", "Red Gambeson", [("red_gambeson_a",0)], itp_type_body_armor|itp_covers_legs, 0,
461, weight(5)|body_armor(21)|leg_armor(5)|difficulty(9), imodbits_cloth],
["padded_cloth", "Aketon", [("padded_cloth_a",0)], itp_type_body_armor|itp_covers_legs, 0,
430, weight(11)|body_armor(22)|leg_armor(6)|difficulty(9), imodbits_cloth, init_heraldic_item("tableau_heraldic_padded_cloth_a")],
["aketon_green", "Padded Cloth", [("padded_cloth_b",0)], itp_type_body_armor|itp_covers_legs, 0,
454, weight(11)|body_armor(23)|leg_armor(6)|difficulty(9), imodbits_cloth, init_heraldic_item("tableau_heraldic_padded_cloth_b")],
["archers_vest", "Archer's Padded Vest", [("archers_vest",0)], itp_type_body_armor|itp_covers_legs, 0,
460, weight(8)|body_armor(23)|leg_armor(10)|difficulty(9), imodbits_cloth],
["nomad_vest", "Nomad Vest", [("nomad_vest_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
490, weight(7)|body_armor(22)|leg_armor(8)|difficulty(8), imodbits_cloth],
["ragged_outfit", "Ragged Outfit", [("ragged_outfit_a_new",0)], itp_type_body_armor|itp_covers_legs, 0,
521, weight(7)|body_armor(23)|leg_armor(9)|difficulty(8), imodbits_cloth],
["surgeon_coat", "Surgeon's Coat", [("pw_surgeon_coat", 0)], itp_type_body_armor|itp_covers_legs, 0,
732, weight(11)|body_armor(24)|leg_armor(9)|difficulty(8), imodbits_cloth],
["nomad_armor", "Nomad Armor", [("nomad_armor_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
550, weight(3)|body_armor(24)|difficulty(8), imodbits_cloth],
["nomad_robe", "Nomad Robe", [("nomad_robe_a",0)], itp_type_body_armor|itp_covers_legs, 0,
670, weight(10)|body_armor(25)|leg_armor(8)|difficulty(8), imodbits_cloth],
["light_leather", "Light Leather", [("light_leather",0)], itp_type_body_armor|itp_covers_legs, 0,
594, weight(5)|body_armor(26)|leg_armor(7)|difficulty(8), imodbits_armor],
["leather_jerkin", "Leather Jerkin", [("ragged_leather_jerkin",0)], itp_type_body_armor|itp_covers_legs, 0,
540, weight(6)|body_armor(25)|leg_armor(6)|difficulty(10), imodbits_cloth],
["padded_leather", "Padded Leather", [("leather_armor_b",0)], itp_type_body_armor|itp_covers_legs, 0,
623, weight(12)|body_armor(27)|leg_armor(7)|difficulty(9), imodbits_cloth],
["arena_armor", "Arena Armor", [("arena_armorW_new",0)], itp_type_body_armor|itp_covers_legs, 0,
650, weight(16)|body_armor(29)|leg_armor(13)|difficulty(9), imodbits_armor, init_heraldic_item("tableau_colored_arena_armor")],
["tribal_warrior_outfit", "Tribal Warrior Outfit", [("tribal_warrior_outfit_a_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
720, weight(14)|body_armor(30)|leg_armor(10)|difficulty(9), imodbits_cloth],
["sarranid_leather_armor", "Leather Armor", [("sarranid_leather_armor",0)], itp_type_body_armor|itp_covers_legs, 0,
1020, weight(9)|body_armor(32)|leg_armor(12)|difficulty(9), imodbits_armor],
["courtly_outfit", "Courtly Outfit", [("nobleman_outf", 0)], itp_type_body_armor|itp_covers_legs, 0,
1320, weight(4)|body_armor(24)|leg_armor(10)|difficulty(9), imodbits_cloth],
["nobleman_outfit", "Nobleman Outfit", [("nobleman_outfit_b_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
1348, weight(4)|body_armor(25)|leg_armor(12)|difficulty(9), imodbits_cloth],
["sarranid_cavalry_robe", "Brown Mail Shirt", [("arabian_armor_a",0)], itp_type_body_armor|itp_covers_legs, 0,
1220, weight(15)|body_armor(36)|leg_armor(8)|difficulty(9), imodbits_armor],
["studded_leather_coat", "Studded Leather Coat", [("leather_armor_a",0)], itp_type_body_armor|itp_covers_legs, 0,
1320, weight(14)|body_armor(36)|leg_armor(10)|difficulty(10), imodbits_armor],
["byrnie", "Byrnie", [("byrnie_a_new",0)], itp_type_body_armor|itp_covers_legs, 0,
2101, weight(17)|body_armor(39)|leg_armor(6)|difficulty(10), imodbits_armor],
["haubergeon", "Haubergeon", [("haubergeon_c",0)], itp_type_body_armor|itp_covers_legs, 0,
2330, weight(18)|body_armor(41)|leg_armor(6)|difficulty(11), imodbits_armor],
["arabian_armor_b", "Guard Armor", [("arabian_armor_b",0)], itp_type_body_armor|itp_covers_legs, 0,
2010, weight(19)|body_armor(38)|leg_armor(8)|difficulty(11), imodbits_armor],
["lamellar_vest", "Lamellar Vest", [("lamellar_vest_a",0)], itp_type_body_armor|itp_covers_legs, 0,
2595, weight(18)|body_armor(40)|leg_armor(8)|difficulty(11), imodbits_cloth],
["lamellar_vest_khergit", "Lamellar Vest", [("lamellar_vest_b",0)], itp_type_body_armor|itp_covers_legs, 0,
2500, weight(18)|body_armor(40)|leg_armor(8)|difficulty(11), imodbits_cloth, init_heraldic_item("tableau_colored_lamellar_vest_b")],
["mail_shirt", "Mail Shirt", [("mail_shirt_a",0)], itp_type_body_armor|itp_covers_legs, 0,
2740, weight(19)|body_armor(39)|leg_armor(12)|difficulty(11), imodbits_armor],
["mail_hauberk", "Mail Hauberk", [("hauberk_a_new",0)], itp_type_body_armor|itp_covers_legs, 0,
3320, weight(19)|body_armor(42)|leg_armor(12)|difficulty(11), imodbits_armor],
["sarranid_mail_shirt", "Orange Mail Shirt", [("sarranian_mail_shirt",0)], itp_type_body_armor|itp_covers_legs, 0,
4400, weight(19)|body_armor(40)|leg_armor(14)|difficulty(12), imodbits_armor],
["bishop_armor", "Bishop's Armor", [("pw_bishop_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
6345, weight(23)|body_armor(41)|leg_armor(13)|difficulty(14), imodbits_armor],
["mail_with_surcoat", "Surcoat over Mail", [("mail_long_surcoat_new",0)], itp_type_body_armor|itp_covers_legs, 0,
5544, weight(22)|body_armor(42)|leg_armor(14)|difficulty(13), imodbits_armor, init_heraldic_item("tableau_heraldic_mail_long_surcoat")],
["surcoat_over_mail", "Surcoat over Mail", [("surcoat_over_mail_new",0)], itp_type_body_armor|itp_covers_legs, 0,
5620, weight(22)|body_armor(43)|leg_armor(14)|difficulty(13), imodbits_armor, init_heraldic_item("tableau_heraldic_surcoat_over_mail")],
["brigandine_red", "Brigandine", [("brigandine_b",0)], itp_type_body_armor|itp_covers_legs, 0,
5830, weight(19)|body_armor(45)|leg_armor(12)|difficulty(15), imodbits_armor, init_heraldic_item("tableau_heraldic_brigandine_b")],
["mamluke_mail", "Mail Robe", [("sarranid_elite_cavalary",0)], itp_type_body_armor|itp_covers_legs, 0,
7900, weight(24)|body_armor(46)|leg_armor(16)|difficulty(15), imodbits_armor],
["lamellar_armor", "Lamellar Armor", [("lamellar_armor_b",0)], itp_type_body_armor|itp_covers_legs, 0,
7410, weight(25)|body_armor(46)|leg_armor(13)|difficulty(15), imodbits_armor],
["scale_armor", "Scale Armor", [("lamellar_armor_e",0)], itp_type_body_armor|itp_covers_legs, 0,
9558, weight(25)|body_armor(47)|leg_armor(13)|difficulty(15), imodbits_armor],
["banded_armor", "Banded Armor", [("banded_armor_a",0)], itp_type_body_armor|itp_covers_legs, 0,
9710, weight(23)|body_armor(46)|leg_armor(14)|difficulty(15), imodbits_armor],
["cuir_bouilli", "Cuir Bouilli", [("cuir_bouilli_a",0)], itp_type_body_armor|itp_covers_legs, 0,
9100, weight(24)|body_armor(45)|leg_armor(15)|difficulty(15), imodbits_armor],
["coat_of_plates", "Coat of Plates", [("coat_of_plates_a",0)], itp_type_body_armor|itp_covers_legs, 0,
15470, weight(25)|body_armor(47)|leg_armor(16)|difficulty(15), imodbits_armor],
["coat_of_plates_red", "Heraldic Coat of Plates", [("coat_of_plates_red",0)], itp_type_body_armor|itp_covers_legs, 0,
15470, weight(25)|body_armor(47)|leg_armor(16)|difficulty(15), imodbits_armor, init_heraldic_item("tableau_heraldic_coat_of_plates")],
["khergit_elite_armor", "Heraldic Elite Armor", [("lamellar_armor_d",0)], itp_type_body_armor|itp_covers_legs, 0,
17710, weight(25)|body_armor(48)|leg_armor(16)|difficulty(15), imodbits_armor, init_heraldic_item("tableau_heraldic_lamellar_armor_d")],
["vaegir_elite_armor", "Elite Armor", [("lamellar_armor_c",0)], itp_type_body_armor|itp_covers_legs, 0,
17750, weight(25)|body_armor(48)|leg_armor(16)|difficulty(15), imodbits_armor],
["sarranid_elite_armor", "Elite Armor", [("tunic_armor_a",0)], itp_type_body_armor|itp_covers_legs, 0,
17800, weight(25)|body_armor(48)|leg_armor(16)|difficulty(15), imodbits_armor],
["plate_armor", "Plate Armor", [("full_plate_armor",0)], itp_type_body_armor|itp_covers_legs, 0,
91400, weight(30)|body_armor(55)|leg_armor(17)|difficulty(15), imodbits_plate],
["black_armor", "Black Armor", [("black_armor",0)], itp_type_body_armor|itp_covers_legs, 0,
55200, weight(1)|body_armor(200)|leg_armor(50)|difficulty(20), imodbits_plate],
["light_heraldic_mail", "Light Heraldic Mail", [("heraldic_armor_new_c",0)], itp_type_body_armor|itp_covers_legs, 0,
1313, weight(12)|body_armor(30)|leg_armor(5)|difficulty(9), imodbits_armor, init_heraldic_item("tableau_heraldic_armor_c")],
["heraldic_mail_with_tunic", "Heraldic Mail with Tunic", [("heraldic_armor_new_b",0)], itp_type_body_armor|itp_covers_legs, 0,
2045, weight(15)|body_armor(35)|leg_armor(8)|difficulty(10), imodbits_armor, init_heraldic_item("tableau_heraldic_armor_b")],
["heraldic_mail_with_tabard", "Heraldic Mail with Tabard", [("heraldic_armor_new_d",0)], itp_type_body_armor|itp_covers_legs, 0,
2970, weight(20)|body_armor(40)|leg_armor(10)|difficulty(12), imodbits_armor, init_heraldic_item("tableau_heraldic_armor_d")],
["heraldic_mail_with_surcoat", "Heraldic Mail with Surcoat", [("heraldic_armor_new_a",0)], itp_type_body_armor|itp_covers_legs, 0,
7800, weight(25)|body_armor(44)|leg_armor(15)|difficulty(15), imodbits_armor, init_heraldic_item("tableau_heraldic_armor_a")],
["byrnie_a_tunic", "Red Robe with Cape", [("byrnie_a_tunic",0)], itp_type_body_armor|itp_covers_legs, 0,
237, weight(3)|body_armor(10)|leg_armor(6)|difficulty(0), imodbits_cloth],
["byrnie_a_tunic_c", "Green Robe with Cape", [("byrnie_a_tunic_c",0)], itp_type_body_armor|itp_covers_legs, 0,
237, weight(3)|body_armor(10)|leg_armor(6)|difficulty(0), imodbits_cloth],
["rich_tunic_e", "Rich Tunic", [("rich_tunic_e",0)], itp_type_body_armor|itp_covers_legs, 0,
237, weight(3)|body_armor(8)|leg_armor(6)|difficulty(0), imodbits_cloth],
["sar_pants", "Sarranid Shirt", [("sar_pants",0)], itp_type_body_armor|itp_covers_legs, 0,
237, weight(3)|body_armor(7)|leg_armor(6)|difficulty(0), imodbits_cloth],
["shirt_e", "Shirt", [("shirt_e",0)], itp_type_body_armor|itp_covers_legs, 0,
137, weight(3)|body_armor(7)|leg_armor(5)|difficulty(0), imodbits_cloth],
["ribaude_dress", "Maroon Dress", [("ribaude_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
76, weight(3)|body_armor(6)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
["tavern_keep_shirt", "Tavernkeep Shirt", [("tavern_keep_shirt",0)], itp_type_body_armor|itp_covers_legs, 0,
137, weight(3)|body_armor(7)|leg_armor(5)|difficulty(0), imodbits_cloth],
["red_dress2", "Red Courtly Dress", [("red_dress2",0)], itp_type_body_armor|itp_covers_legs, 0,
76, weight(3)|body_armor(6)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
["rich_blue_dress", "Blue Courtly Dress", [("rich_blue_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
76, weight(3)|body_armor(6)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
["nobleman_outfit_charles", "Blue Ornate Courtly Outfit", [("nobleman_outfit_charles",0)], itp_type_body_armor|itp_covers_legs, 0,
137, weight(3)|body_armor(7)|leg_armor(5)|difficulty(0), imodbits_cloth],
["nobleman_outfit_anglais", "Red Ornate Courtly Outfit", [("nobleman_outfit_anglais",0)], itp_type_body_armor|itp_covers_legs, 0,
137, weight(3)|body_armor(7)|leg_armor(5)|difficulty(0), imodbits_cloth],
["new_noble_tunic_a", "Rich Noble Tunic", [("new_noble_tunic_a",0)], itp_type_body_armor|itp_covers_legs, 0,
137, weight(3)|body_armor(7)|leg_armor(5)|difficulty(0), imodbits_cloth],
["new_noble_tunic_b", "Rich Noble Tunic", [("new_noble_tunic_b",0)], itp_type_body_armor|itp_covers_legs, 0,
137, weight(3)|body_armor(7)|leg_armor(5)|difficulty(0), imodbits_cloth],
["maid_dress", "Brown Maid Dress", [("maid_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
76, weight(3)|body_armor(6)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
["peasant_dress_c", "Peasant Dress", [("peasant_dress_c",0)], itp_type_body_armor|itp_covers_legs, 0,
76, weight(3)|body_armor(6)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
["shirt_c", "Blue Shirt", [("shirt_c",0)], itp_type_body_armor |itp_covers_legs ,0,
180, weight(2)|body_armor(10)|leg_armor(4)|difficulty(6), imodbits_cloth],
["shirt_b", "Green Shirt", [("shirt_b",0)], itp_type_body_armor |itp_covers_legs ,0,
180, weight(2)|body_armor(10)|leg_armor(4)|difficulty(6), imodbits_cloth],
["khergit_vest_d", "Decorated Khergit Vest", [("khergit_vest_d",0)], itp_type_body_armor |itp_covers_legs ,0,
180, weight(2)|body_armor(12)|leg_armor(4)|difficulty(6), imodbits_cloth],
["khergit_vest_a", "White Khergit Vest", [("khergit_vest_a",0)], itp_type_body_armor |itp_covers_legs ,0,
180, weight(2)|body_armor(12)|leg_armor(4)|difficulty(6), imodbits_cloth],
["blue_kaftan", "Blue Kaftan", [("blue_kaftan",0)], itp_type_body_armor |itp_covers_legs ,0,
180, weight(2)|body_armor(12)|leg_armor(4)|difficulty(6), imodbits_cloth],
["drz_kaftan", "Red Kaftan", [("drz_kaftan",0)], itp_type_body_armor |itp_covers_legs ,0,
180, weight(2)|body_armor(12)|leg_armor(4)|difficulty(6), imodbits_cloth],
["padded_armor", "Gold Tourney Armor", [("padded_armor",0)], itp_type_body_armor|itp_covers_legs, 0,
570, weight(9)|body_armor(20)|leg_armor(6)|difficulty(10), imodbits_cloth],
["ragged_armour_a", "Ragged Armor", [("ragged_armour_a",0)], itp_type_body_armor|itp_covers_legs, 0,
570, weight(9)|body_armor(20)|leg_armor(6)|difficulty(10), imodbits_cloth],
["studded_coat_mail_a", "Studded Coat with Mail", [("studded_coat_mail_a",0)], itp_type_body_armor|itp_covers_legs, 0,
610, weight(9)|body_armor(28)|leg_armor(6)|difficulty(10), imodbits_cloth],
["gambeson_red", "Red Gambeson", [("gambeson_red", 0)], itp_type_body_armor|itp_covers_legs, 0,
650, weight(10)|body_armor(30)|leg_armor(6)|difficulty(10), imodbits_cloth],
["gambeson_brown", "Brown Gambeson", [("gambeson_brown", 0)], itp_type_body_armor|itp_covers_legs, 0,
650, weight(10)|body_armor(30)|leg_armor(6)|difficulty(10), imodbits_cloth],
["gambeson", "Gambeson", [("gambeson", 0)], itp_type_body_armor|itp_covers_legs, 0,
650, weight(10)|body_armor(30)|leg_armor(6)|difficulty(10), imodbits_cloth],
["fred_padded_leather", "Padded Leather", [("fred_padded_leather", 0)], itp_type_body_armor|itp_covers_legs, 0,
1090, weight(11)|body_armor(32)|leg_armor(10)|difficulty(10), imodbits_cloth],
["fred_padded_leather_cowl", "Padded Leather with Cape", [("fred_padded_leather_cowl", 0)], itp_type_body_armor|itp_covers_legs, 0,
1090, weight(11)|body_armor(32)|leg_armor(10)|difficulty(10), imodbits_cloth],
["brown_assassin_armor", "Brown Assassin Armor", [("brown_assassin_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
1210, weight(14)|body_armor(35)|leg_armor(10)|difficulty(10), imodbits_cloth],
["white_assassin_armor", "White Assassin Armor", [("white_assassin_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
1210, weight(14)|body_armor(35)|leg_armor(10)|difficulty(10), imodbits_cloth],
["green_assassin_armor", "Green Assassin Armor", [("green_assassin_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
1210, weight(14)|body_armor(35)|leg_armor(10)|difficulty(10), imodbits_cloth],
["aketon", "Aketon", [("aketon", 0)], itp_type_body_armor|itp_covers_legs, 0,
1210, weight(14)|body_armor(35)|leg_armor(10)|difficulty(10), imodbits_cloth],
["light_mercenary_armor", "Light Mercenary Armor", [("light_mercenary_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
1460, weight(15)|body_armor(35)|leg_armor(14)|difficulty(10), imodbits_cloth],
["aketon_kneecops", "Aketon with Kneecops", [("aketon_kneecops", 0)], itp_type_body_armor|itp_covers_legs, 0,
1520, weight(15)|body_armor(35)|leg_armor(15)|difficulty(10), imodbits_cloth],
["fred_peasant_mail", "Peasant Mail with Cape", [("fred_peasant_mail", 0)], itp_type_body_armor|itp_covers_legs, 0,
1350, weight(16)|body_armor(36)|leg_armor(10)|difficulty(10), imodbits_armor],
["cwe_archer_armor_2", "Brown Gambeson with Cape", [("cwe_archer_armor_2", 0)], itp_type_body_armor|itp_covers_legs, 0,
1780, weight(18)|body_armor(37)|leg_armor(10)|difficulty(10), imodbits_armor],
["cwe_archer_armor_1", "Black Gambeson with Cape", [("cwe_archer_armor_1", 0)], itp_type_body_armor|itp_covers_legs, 0,
1780, weight(18)|body_armor(37)|leg_armor(10)|difficulty(10), imodbits_armor],
["padded_mail_a", "Padded Mail with White Shirt", [("padded_mail_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
2110, weight(19)|body_armor(38)|leg_armor(10)|difficulty(10), imodbits_armor],
["padded_mail_b", "Padded Mail with Green Shirt", [("padded_mail_b", 0)], itp_type_body_armor|itp_covers_legs, 0,
2110, weight(19)|body_armor(38)|leg_armor(10)|difficulty(10), imodbits_armor],
["byrnie_e", "Byrnie with Green Tunic", [("byrnie_e",0)], itp_type_body_armor|itp_covers_legs, 0,
2150, weight(9)|body_armor(39)|leg_armor(6)|difficulty(10), imodbits_cloth],
["byrnie_f", "Byrnie with Blue Tunic", [("byrnie_f",0)], itp_type_body_armor|itp_covers_legs, 0,
2150, weight(9)|body_armor(39)|leg_armor(6)|difficulty(10), imodbits_cloth],
["hauberk", "Light Hauberk", [("hauberk", 0)], itp_type_body_armor|itp_covers_legs, 0,
2620, weight(20)|body_armor(39)|leg_armor(10)|difficulty(12), imodbits_armor],
["brigandine_green", "Green Light Brigandine", [("brigandine_green", 0)], itp_type_body_armor|itp_covers_legs, 0,
2940, weight(20)|body_armor(40)|leg_armor(10)|difficulty(12), imodbits_armor],
["sar_lamellar_vest_blue", "Blue Lamellar Vest", [("sar_lamellar_vest_blue", 0)], itp_type_body_armor|itp_covers_legs, 0,
3030, weight(20)|body_armor(40)|leg_armor(12)|difficulty(12), imodbits_armor],
["sar_lamellar_vest_mail_red", "Red Lamellar Vest with Mail", [("sar_lamellar_vest_mail_red", 0)], itp_type_body_armor|itp_covers_legs, 0,
3130, weight(20)|body_armor(41)|leg_armor(12)|difficulty(12), imodbits_armor],
["cwe_sergeant_armor_2", "Black Gambeson with Mail", [("cwe_sergeant_armor_2", 0)], itp_type_body_armor|itp_covers_legs, 0,
3190, weight(20)|body_armor(41)|leg_armor(12)|difficulty(12), imodbits_armor],
["cwe_sergeant_armor_3", "Red Gambeson with Mail", [("cwe_sergeant_armor_3", 0)], itp_type_body_armor|itp_covers_legs, 0,
3190, weight(20)|body_armor(41)|leg_armor(12)|difficulty(12), imodbits_armor],
["brigandine_brown_mail", "Brown Light Brigandine with Mail", [("brigandine_brown_mail", 0)], itp_type_body_armor|itp_covers_legs, 0,
5470, weight(20)|body_armor(42)|leg_armor(13)|difficulty(14), imodbits_armor],
["turk_bandit_b", "Light Saracen Armor", [("turk_bandit_b", 0)], itp_type_body_armor|itp_covers_legs, 0,
5480, weight(20)|body_armor(42)|leg_armor(13)|difficulty(14), imodbits_armor],
["turk_bandit_c", "Light Saracen Infantry Armor", [("turk_bandit_c", 0)], itp_type_body_armor|itp_covers_legs, 0,
5560, weight(21)|body_armor(43)|leg_armor(13)|difficulty(14), imodbits_armor],
["medium_mercenary_armor", "Medium Mercenary Armor", [("medium_mercenary_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
5560, weight(21)|body_armor(43)|leg_armor(14)|difficulty(14), imodbits_armor],
["rus_lamellar_a", "Rus Lamellar Armor", [("rus_lamellar_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
5620, weight(21)|body_armor(43)|leg_armor(14)|difficulty(14), imodbits_armor],
["kuyak_a", "Light Kuyak", [("kuyak_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
6460, weight(21)|body_armor(43)|leg_armor(14)|difficulty(14), imodbits_armor],
["sar_infantry_armor", "Saracen Infantry Armor", [("sar_infantry_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
6810, weight(22)|body_armor(44)|leg_armor(13)|difficulty(15), imodbits_armor],
["cwe_armor_medium_tyrk_d", "Medium Saracen Armor", [("cwe_armor_medium_tyrk_d", 0)], itp_type_body_armor|itp_covers_legs, 0,
6870, weight(22)|body_armor(44)|leg_armor(13)|difficulty(15), imodbits_armor],
["kuyak_b", "Heavy Kuyak", [("kuyak_b", 0)], itp_type_body_armor|itp_covers_legs, 0,
7270, weight(22)|body_armor(44)|leg_armor(14)|difficulty(15), imodbits_armor],
["sar_lamellar_armor", "Saracen Lamellar Armor", [("sar_lamellar_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
7330, weight(22)|body_armor(44)|leg_armor(14)|difficulty(15), imodbits_armor],
["drz_lamellar_armor", "Lamellar Armor", [("drz_lamellar_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
7830, weight(22)|body_armor(44)|leg_armor(15)|difficulty(15), imodbits_armor],
["armor_medium_tyrk_f", "Heavy Saracen Armor", [("armor_medium_tyrk_f", 0)], itp_type_body_armor|itp_covers_legs, 0,
7880, weight(22)|body_armor(44)|leg_armor(15)|difficulty(15), imodbits_armor],
["hauberk3", "Heavy Hauberk", [("hauberk3", 0)], itp_type_body_armor|itp_covers_legs, 0,
8230, weight(22)|body_armor(44)|leg_armor(17)|difficulty(15), imodbits_armor],
["rus_scale", "Rus Scale Armor", [("rus_scale", 0)], itp_type_body_armor|itp_covers_legs, 0,
8790, weight(23)|body_armor(45)|leg_armor(14)|difficulty(15), imodbits_armor],
["hauberk2", "Heavy Hauberk with Plate", [("hauberk2", 0)], itp_type_body_armor|itp_covers_legs, 0,
9410, weight(23)|body_armor(45)|leg_armor(17)|difficulty(15), imodbits_armor],
["early_transitional_heraldic", "Early Transitional Armor", [("early_transitional_heraldic",0)], itp_type_body_armor|itp_covers_legs, 0,
10450, weight(23)|body_armor(45)|leg_armor(15)|difficulty(15), imodbits_armor, init_heraldic_item("tableau_heraldic_early_transitional_white")],
["corrazina_green", "Green Corrazina", [("corrazina_green", 0)], itp_type_body_armor|itp_covers_legs, 0,
12240, weight(24)|body_armor(46)|leg_armor(16)|difficulty(15), imodbits_armor],
["corrazina_red", "Red Corrazina", [("corrazina_red", 0)], itp_type_body_armor|itp_covers_legs, 0,
12240, weight(24)|body_armor(46)|leg_armor(16)|difficulty(15), imodbits_armor],
["sarranid_guard_armor", "Saracen Guard Armor", [("sarranid_guard_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
12310, weight(24)|body_armor(46)|leg_armor(16)|difficulty(15), imodbits_armor],
["brigandine_blue", "Blue Brigandine with Plate", [("brigandine_blue", 0)], itp_type_body_armor|itp_covers_legs, 0,
12600, weight(24)|body_armor(46)|leg_armor(16)|difficulty(15), imodbits_armor],
["brigandine_red_a", "Red Brigandine with Plate", [("brigandine_red_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
12960, weight(24)|body_armor(46)|leg_armor(17)|difficulty(15), imodbits_armor],
["drz_elite_lamellar_armor", "Elite Lamellar Armor", [("drz_elite_lamellar_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
14980, weight(25)|body_armor(48)|leg_armor(16)|difficulty(15), imodbits_armor],
["ghulam_heavy_cavalryman_3", "Ghulam Lamellar Armor", [("ghulam_heavy_cavalryman_3", 0)], itp_type_body_armor|itp_covers_legs, 0,
14980, weight(25)|body_armor(48)|leg_armor(16)|difficulty(15), imodbits_armor],
["heavy_mercenary_armor", "Heavy Mercenary Armor", [("heavy_mercenary_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
15180, weight(25)|body_armor(48)|leg_armor(16)|difficulty(15), imodbits_armor],
["brigandine_red_mail", "Red Brigandine with Plate and Mail", [("brigandine_red_mail", 0)], itp_type_body_armor|itp_covers_legs, 0,
16160, weight(25)|body_armor(48)|leg_armor(17)|difficulty(15), imodbits_armor],
["brigandine_black_mail", "Black Brigandine with Plate and Mail", [("brigandine_black_mail", 0)], itp_type_body_armor|itp_covers_legs, 0,
16380, weight(25)|body_armor(48)|leg_armor(17)|difficulty(15), imodbits_armor],
["armor_sultan_saracens", "Sultan Armor", [("armor_sultan_saracens", 0)], itp_type_body_armor|itp_covers_legs, 0,
62560, weight(26)|body_armor(50)|leg_armor(16)|difficulty(15), imodbits_armor],
["churburg_13", "Blue Churburg", [("churburg_13", 0)], itp_type_body_armor|itp_covers_legs, 0,
72100, weight(27)|body_armor(52)|leg_armor(17)|difficulty(15), imodbits_plate],
["churburg_13_brass", "Decorated Red Churburg", [("churburg_13_brass", 0)], itp_type_body_armor|itp_covers_legs, 0,
86980, weight(27)|body_armor(52)|leg_armor(17)|difficulty(15), imodbits_plate],
["churburg", "Decorated Grey Churburg", [("churburg", 0)], itp_type_body_armor|itp_covers_legs, 0,
91420, weight(28)|body_armor(53)|leg_armor(17)|difficulty(15), imodbits_plate],
["armour_new_b", "Milanese Plate", [("armour_new_b", 0)], itp_type_body_armor|itp_covers_legs, 0,
97300, weight(30)|body_armor(54)|leg_armor(18)|difficulty(15), imodbits_plate],
["gothic_armour_plain", "Gothic Plate", [("gothic_armour_plain", 0)], itp_type_body_armor|itp_covers_legs, 0,
99560, weight(30)|body_armor(54)|leg_armor(18)|difficulty(15), imodbits_plate],
["royal_plate", "Royal Plate", [("royal_plate", 0)], itp_type_body_armor|itp_covers_legs, 0,
99560, weight(30)|body_armor(54)|leg_armor(18)|difficulty(15), imodbits_plate],
["tattered_wrapping_boots", "Tattered Wrapping Boots", [("shoe_fur", 0)], itp_type_foot_armor|itp_attach_armature, 0,
8, weight(1)|leg_armor(2)|difficulty(0), imodbits_cloth],
["ripped_woolen_hose", "Ripped Woolen Hose", [("woolen_hose", 0)], itp_type_foot_armor|itp_attach_armature, 0,
6, weight(1)|leg_armor(1)|difficulty(0), imodbits_cloth],
["old_hide_boots", "Old Hide Boots", [("boot_nomad_b", 0)], itp_type_foot_armor|itp_attach_armature, 0,
13, weight(1)|leg_armor(4)|difficulty(0), imodbits_cloth],
["wrapping_boots", "Wrapping Boots", [("wrapping_boots_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
30, weight(1)|leg_armor(3)|difficulty(0), imodbits_cloth],
["woolen_hose", "Woolen Hose", [("woolen_hose_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
60, weight(1)|leg_armor(4)|difficulty(0), imodbits_cloth],
["friar_sandals", "Friar's Sandals", [("pw_friar_sandals", 0)], itp_type_foot_armor|itp_attach_armature, 0,
87, weight(1)|leg_armor(4)|difficulty(0), imodbits_cloth],
["blue_hose", "Blue Hose", [("blue_hose_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
110, weight(1)|leg_armor(5)|difficulty(0), imodbits_cloth],
["bride_shoes", "Bride Shoes", [("bride_shoes",0)], itp_type_foot_armor|itp_attach_armature, 0,
565, weight(1)|leg_armor(1)|difficulty(0), imodbits_cloth|imodbit_female],
["priest_leggings", "Priestly Leggings", [("pw_priest_leggings", 0)], itp_type_foot_armor|itp_attach_armature, 0,
230, weight(1)|leg_armor(8)|difficulty(0), imodbits_cloth],
["sarranid_boots_a", "Pointed Shoes", [("sarranid_shoes",0)], itp_type_foot_armor|itp_attach_armature ,0,
150, weight(1)|leg_armor(8)|difficulty(0) ,imodbits_cloth ],
["hunter_boots", "Hunter Boots", [("hunter_boots_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
190, weight(1.25)|leg_armor(9)|difficulty(0), imodbits_cloth],
["hide_boots", "Hide Boots", [("hide_boots_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
240, weight(1)|leg_armor(10)|difficulty(0), imodbits_cloth],
["ankle_boots", "Ankle Boots", [("ankle_boots_a_new", 0)], itp_type_foot_armor|itp_attach_armature, 0,
270, weight(1)|leg_armor(12)|difficulty(0), imodbits_cloth],
["nomad_boots", "Nomad Boots", [("nomad_boots_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
310, weight(1.25)|leg_armor(14)|difficulty(0), imodbits_cloth],
["light_leather_boots", "Light Leather Boots", [("light_leather_boots",0)], itp_type_foot_armor|itp_attach_armature, 0,
366, weight(1)|leg_armor(15)|difficulty(6), imodbits_cloth],
["leather_boots", "Leather Boots", [("leather_boots_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
400, weight(1.25)|leg_armor(16)|difficulty(6), imodbits_cloth],
["sarranid_boots_b", "Pointed Leather Boots", [("sarranid_boots",0)], itp_type_foot_armor|itp_attach_armature, 0,
440, weight(1.25)|leg_armor(17)|difficulty(6), imodbits_cloth],
["khergit_leather_boots", "Black Leather Boots", [("khergit_leather_boots",0)], itp_type_foot_armor|itp_attach_armature, 0,
465, weight(1.5)|leg_armor(18)|difficulty(8), imodbits_cloth],
["sarranid_boots_c", "Plated Boots", [("sarranid_camel_boots",0)], itp_type_foot_armor|itp_attach_armature, 0,
532, weight(2.5)|leg_armor(20)|difficulty(9) ,imodbits_plate ],
["splinted_leather_greaves", "Splinted Leather Greaves", [("leather_greaves_a",0)], itp_type_foot_armor|itp_attach_armature, 0,
612, weight(3)|leg_armor(21)|difficulty(9), imodbits_armor],
["bishop_chausses", "Bishop's Chausses", [("pw_bishop_chausses", 0)], itp_type_foot_armor|itp_attach_armature, 0,
886, weight(3)|leg_armor(22)|difficulty(10), imodbits_armor],
["mail_chausses", "Mail Chausses", [("mail_chausses_a",0)], itp_type_foot_armor|itp_attach_armature, 0,
930, weight(3)|leg_armor(24)|difficulty(10), imodbits_armor],
["splinted_greaves", "Splinted Greaves", [("splinted_greaves_a",0)], itp_type_foot_armor|itp_attach_armature, 0,
1353, weight(3.5)|leg_armor(28)|difficulty(12), imodbits_armor],
["sarranid_boots_d", "Mail Boots", [("sarranid_mail_chausses",0)], itp_type_foot_armor|itp_attach_armature, 0,
1420 , weight(2.5)|leg_armor(30)|difficulty(12), imodbits_armor],
["mail_boots", "Mail Boots", [("mail_boots_a",0)], itp_type_foot_armor|itp_attach_armature, 0,
1750, weight(3)|leg_armor(31)|difficulty(14), imodbits_armor],
["iron_greaves", "Iron Greaves", [("iron_greaves_a",0)], itp_type_foot_armor|itp_attach_armature, 0,
2470, weight(3.5)|leg_armor(33)|difficulty(15), imodbits_armor],
["plate_boots", "Plate Boots", [("plate_boots",0)], itp_type_foot_armor|itp_attach_armature, 0,
2864, weight(3.5)|leg_armor(34)|difficulty(15), imodbits_plate],
["black_greaves", "Black Greaves", [("black_greaves",0)], itp_type_foot_armor|itp_attach_armature, 0,
5661, weight(1)|leg_armor(100)|difficulty(20), imodbits_plate],
["civil_rich_boots_b", "Black Rich Boots", [("civil_rich_Boots_b", 0)], itp_type_foot_armor|itp_attach_armature, 0,
520, weight(1.3)|leg_armor(16)|difficulty(6), imodbits_cloth],
["civil_rich_boots_a", "Red Rich Boots", [("civil_rich_Boots_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
520, weight(1.3)|leg_armor(16)|difficulty(6), imodbits_cloth],
["rus_cav_boots", "Rus Cavalry Boots", [("rus_cav_boots", 0)], itp_type_foot_armor|itp_attach_armature, 0,
560, weight(1.3)|leg_armor(18)|difficulty(6), imodbits_cloth],
["sarranid_camel_boots1", "Saracen Leather Boots", [("sarranid_camel_boots1", 0)], itp_type_foot_armor|itp_attach_armature, 0,
620, weight(1.3)|leg_armor(18)|difficulty(6), imodbits_cloth],
["leather_boots_noble", "Noble Leather Boots", [("leather_boots", 0)], itp_type_foot_armor|itp_attach_armature, 0,
880, weight(1.5)|leg_armor(20)|difficulty(6), imodbits_cloth],
["sarranid_camel_boots2", "Red Saracen Leather Boots", [("sarranid_camel_boots2", 0)], itp_type_foot_armor|itp_attach_armature, 0,
910, weight(1.5)|leg_armor(20)|difficulty(6), imodbits_cloth],
["sarranid_elite_boots", "Saracen Elite Boots", [("sarranid_elite_boots", 0)], itp_type_foot_armor|itp_attach_armature, 0,
1200, weight(2.0)|leg_armor(22)|difficulty(6), imodbits_cloth],
["sarranid_royal_boots", "Saracen Royal Boots", [("sarranid_royal_boots", 0)], itp_type_foot_armor|itp_attach_armature, 0,
1290, weight(2.0)|leg_armor(24)|difficulty(6), imodbits_armor],
["rus_splint_greaves", "Rus Splinted Greaves", [("rus_splint_greaves", 0)], itp_type_foot_armor|itp_attach_armature, 0,
1490, weight(3.0)|leg_armor(26)|difficulty(10), imodbits_armor],
["splinted_greaves_nospurs", "Splinted Greaves", [("splinted_greaves_nospurs", 0)], itp_type_foot_armor|itp_attach_armature, 0,
1740, weight(3.0)|leg_armor(28)|difficulty(10), imodbits_armor],
["narf_greaves2", "Steel Greaves", [("narf_greaves2", 0)], itp_type_foot_armor|itp_attach_armature, 0,
1980, weight(3.0)|leg_armor(31)|difficulty(10), imodbits_armor],
["shynbaulds", "Shynbaulds", [("shynbaulds", 0)], itp_type_foot_armor|itp_attach_armature, 0,
2510, weight(3.5)|leg_armor(33)|difficulty(15), imodbits_plate],
["narf_greaves", "Polished Steel Boots", [("narf_greaves", 0)], itp_type_foot_armor|itp_attach_armature, 0,
2870, weight(3.5)|leg_armor(34)|difficulty(15), imodbits_plate],
["steel_greaves", "Steel Boots", [("steel_greaves", 0)], itp_type_foot_armor|itp_attach_armature, 0,
2950, weight(3.5)|leg_armor(34)|difficulty(15), imodbits_plate],
["leather_gloves", "Leather Gloves", [("leather_gloves_L",0)], itp_type_hand_armor, 0,
545, weight(0.25)|body_armor(2)|difficulty(0), imodbits_cloth],
["bishop_gloves", "Bishop's Gloves", [("pw_bishop_glove_L",0)], itp_type_hand_armor, 0,
1293, weight(0.5)|body_armor(3)|difficulty(8), imodbits_cloth],
["mail_mittens", "Mail Mittens", [("mail_mittens_L",0)], itp_type_hand_armor, 0,
1350, weight(0.5)|body_armor(4)|difficulty(9), imodbits_armor],
["lamellar_gauntlets", "Lamellar Gauntlets", [("scale_gauntlets_a_L",0)], itp_type_hand_armor, 0,
2320, weight(0.75)|body_armor(5)|difficulty(11), imodbits_armor],
["scale_gauntlets", "Scale Gauntlets", [("scale_gauntlets_b_L",0)], itp_type_hand_armor, 0,
2503, weight(0.75)|body_armor(6)|difficulty(12), imodbits_armor],
["gauntlets", "Gauntlets", [("gauntlets_L",0)], itp_type_hand_armor, 0,
3042, weight(1.0)|body_armor(7)|difficulty(14), imodbits_armor],
["leather_gauntlet", "Leather Gauntlets", [("leather_gauntlet_L",0)], itp_type_hand_armor, 0,
615, weight(0.3)|body_armor(2)|difficulty(0), imodbits_cloth],
["mail_gauntlets", "Mail Gauntlets", [("mail_gauntlets_L",0)], itp_type_hand_armor, 0,
1410, weight(0.5)|body_armor(4)|difficulty(9), imodbits_armor],
["demi_gauntlets", "Demi Gauntlets", [("demi_gauntlets_L",0)], itp_type_hand_armor, 0,
2210, weight(0.8)|body_armor(5)|difficulty(11), imodbits_armor],
["gauntlets_arabs_a", "Saracen Gauntlets", [("gauntlets_arabs_a_L",0)], itp_type_hand_armor, 0,
2260, weight(0.8)|body_armor(5)|difficulty(11), imodbits_armor],
["finger_gauntlets", "Finger Gauntlets", [("finger_gauntlets_L",0)], itp_type_hand_armor, 0,
2670, weight(0.9)|body_armor(6)|difficulty(14), imodbits_armor],
["gauntlets_arabs_b", "Decorated Saracen Gauntlets", [("gauntlets_arabs_b_L",0)], itp_type_hand_armor, 0,
2810, weight(0.9)|body_armor(6)|difficulty(14), imodbits_armor],
["hourglass_gauntlets", "Hourglass Gauntlets", [("hourglass_gauntlets_L",0)], itp_type_hand_armor, 0,
3040, weight(1.0)|body_armor(7)|difficulty(14), imodbits_plate],
["hourglass_gauntlets_ornate", "Decorated Hourglass Gauntlets", [("hourglass_gauntlets_ornate_L",0)], itp_type_hand_armor, 0,
4560, weight(1.0)|body_armor(7)|difficulty(15), imodbits_plate],
["club", "Club", [("club",0)], itp_type_one_handed_wpn|itp_primary|itp_wooden_parry|itp_wooden_attack, itc_scimitar|itcf_carry_mace_left_hip,
35, weight(2.5)|difficulty(5)|spd_rtng(92)|weapon_length(70)|swing_damage(10, blunt)|thrust_damage(0, pierce), imodbits_none],
["spiked_club", "Spiked Club", [("spiked_club",0)], itp_type_one_handed_wpn|itp_primary|itp_wooden_parry, itc_longsword|itcf_carry_mace_left_hip,
383, weight(3.0)|difficulty(10)|spd_rtng(90)|weapon_length(80)|swing_damage(15, pierce)|thrust_damage(17, pierce), imodbits_mace],
["old_knife", "Old Knife", [("peasant_knife",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_left,
78, weight(0.5)|difficulty(0)|spd_rtng(100)|weapon_length(43)|swing_damage(11, cut)|thrust_damage(7, pierce), imodbits_sword, [itm_class(item_class_knife)]],
["crude_spear", "Crude Spear", [("spear_g_1-9m",0)], itp_type_polearm|itp_primary|itp_wooden_parry, itc_staff|itcf_carry_spear,
374, weight(2.0)|difficulty(6)|spd_rtng(92)|weapon_length(120)|swing_damage(6, cut)|thrust_damage(18, pierce), imodbits_polearm],
["blunt_falchion", "Blunt Falchion", [("falchion",0)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
217, weight(1.0)|difficulty(5)|spd_rtng(91)|weapon_length(72)|swing_damage(12, cut)|thrust_damage(0, pierce), imodbits_sword],
["chipped_falchion", "Chipped Falchion", [("falchion",0)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
314, weight(2.5)|difficulty(5)|spd_rtng(95)|weapon_length(72)|swing_damage(16, cut)|thrust_damage(0, pierce), imodbits_sword],
["rusty_sword", "Rusty Sword", [("sword_rusty_a",0),("sword_rusty_a_scabbard",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
321, weight(1.5)|difficulty(9)|spd_rtng(97)|weapon_length(95)|swing_damage(15, cut)|thrust_damage(12, pierce), imodbits_sword],
["worn_sword", "Worn Sword", [("sword_norman_rusty",0),("sword_norman_rusty_scabbard",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
355, weight(1.25)|difficulty(9)|spd_rtng(98)|weapon_length(91)|swing_damage(16, cut)|thrust_damage(13, pierce), imodbits_sword],
["bent_lance", "Bent Lance", [("spear",0)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_spear|itcf_carry_spear,
364, weight(4.5)|difficulty(8)|spd_rtng(87)|weapon_length(156)|swing_damage(0, cut)|thrust_damage(16, pierce), imodbits_polearm],
["practice_sword","Practice Sword", [("pw_practice_sword",0)], itp_type_one_handed_wpn|itp_primary|itp_wooden_parry|itp_wooden_attack, itc_longsword|itcf_carry_sword_left_hip,
103, weight(2.0)|difficulty(8)|spd_rtng(94)|weapon_length(100)|swing_damage(6, cut)|thrust_damage(6, cut), imodbits_none],
["heavy_practice_sword","Heavy Practice Sword", [("pw_heavy_practice_sword",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary|itp_wooden_parry|itp_wooden_attack, itc_greatsword|itcf_carry_sword_back,
174, weight(3.0)|difficulty(14)|spd_rtng(90)|weapon_length(117)|swing_damage(6, cut)|thrust_damage(6, cut), imodbits_none],
["winged_mace", "Flanged Mace", [("flanged_mace",0)], itp_type_one_handed_wpn|itp_can_knock_down|itp_primary|itp_wooden_parry, itc_scimitar|itcf_carry_mace_left_hip,
790, weight(3.0)|difficulty(8)|spd_rtng(100)|weapon_length(70)|swing_damage(28, blunt)|thrust_damage(0, pierce), imodbits_mace],
["spiked_mace", "Spiked Mace", [("spiked_mace_new",0)], itp_type_one_handed_wpn|itp_can_knock_down|itp_primary|itp_wooden_parry, itc_scimitar|itcf_carry_mace_left_hip,
950, weight(3.5)|difficulty(8)|spd_rtng(97)|weapon_length(70)|swing_damage(30, blunt)|thrust_damage(0, pierce), imodbits_pick],
["mace_2", "Knobbed Mace", [("mace_a",0)], itp_type_one_handed_wpn|itp_can_knock_down|itp_primary|itp_wooden_parry, itc_scimitar|itcf_carry_mace_left_hip,
421, weight(2.5)|difficulty(8)|spd_rtng(98)|weapon_length(70)|swing_damage(24, blunt)|thrust_damage(0, pierce), imodbits_mace],
["mace_4", "Winged Mace", [("mace_b",0)], itp_type_one_handed_wpn|itp_can_knock_down|itp_primary|itp_wooden_parry, itc_scimitar|itcf_carry_mace_left_hip,
580, weight(2.5)|difficulty(8)|spd_rtng(98)|weapon_length(70)|swing_damage(27, blunt)|thrust_damage(0, pierce), imodbits_mace],
["club_with_spike_head", "Spiked Staff", [("mace_e",0)], itp_type_two_handed_wpn|itp_can_knock_down|itp_primary|itp_wooden_parry, itc_bastardsword|itcf_carry_axe_back,
600, weight(3.5)|difficulty(12)|spd_rtng(95)|weapon_length(117)|swing_damage(24, blunt)|thrust_damage(20, pierce), imodbits_mace],
["long_spiked_club", "Long Spiked Club", [("mace_long_c",0)], itp_type_polearm|itp_can_knock_down|itp_primary|itp_wooden_parry, itc_staff|itcf_carry_axe_back,
764, weight(3.0)|difficulty(14)|spd_rtng(96)|weapon_length(126)|swing_damage(23, pierce)|thrust_damage(20, blunt), imodbits_mace],
["long_hafted_spiked_mace", "Long Hafted Spiked Mace", [("mace_long_b",0)], itp_type_polearm|itp_can_knock_down|itp_primary|itp_wooden_parry, itc_staff|itcf_carry_axe_back,
810, weight(4.0)|difficulty(14)|spd_rtng(94)|weapon_length(138)|swing_damage(28, blunt)|thrust_damage(26, blunt), imodbits_mace],
["fighting_pick", "Fighting Pick", [("fighting_pick_new",0)], itp_type_one_handed_wpn|itp_primary|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
408, weight(1.0)|difficulty(8)|spd_rtng(98)|weapon_length(68)|swing_damage(24, pierce)|thrust_damage(0, pierce), imodbits_pick],
["military_pick", "Military Pick", [("steel_pick_new",0)], itp_type_one_handed_wpn|itp_primary|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
680, weight(1.5)|difficulty(9)|spd_rtng(97)|weapon_length(68)|swing_damage(31, pierce)|thrust_damage(0, pierce), imodbits_pick],
["military_sickle", "Military Sickle", [("military_sickle_a",0)], itp_type_one_handed_wpn|itp_primary|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
585, weight(1.0)|difficulty(8)|spd_rtng(98)|weapon_length(75)|swing_damage(27, pierce)|thrust_damage(0, pierce), imodbits_axe],
["military_hammer", "Military Hammer", [("military_hammer",0)], itp_type_one_handed_wpn|itp_can_knock_down|itp_primary|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
990, weight(2.0)|difficulty(9)|spd_rtng(95)|weapon_length(70)|swing_damage(31, blunt)|thrust_damage(0, pierce), imodbits_mace],
["morningstar", "Morningstar", [("mace_morningstar_new",0)], itp_crush_through|itp_type_two_handed_wpn|itp_primary|itp_wooden_parry|itp_unbalanced, itc_morningstar|itcf_carry_axe_left_hip,
1305, weight(4.5)|difficulty(15)|spd_rtng(95)|weapon_length(85)|swing_damage(38, pierce)|thrust_damage(0, pierce), imodbits_mace],
["falchion", "Falchion", [("falchion_new",0)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
335, weight(2.5)|difficulty(5)|spd_rtng(96)|weapon_length(73)|swing_damage(30, cut)|thrust_damage(0, pierce), imodbits_sword],
["curved_sword", "Curved Sword", [("khergit_sword",0),("khergit_sword_scabbard",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
654, weight(1.25)|difficulty(9)|spd_rtng(98)|weapon_length(99)|swing_damage(26, cut)|thrust_damage(15, pierce), imodbits_sword],
["sword_medieval_a", "Sword", [("sword_medieval_a",0),("sword_medieval_a_scabbard",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
663, weight(1.5)|difficulty(9)|spd_rtng(99)|weapon_length(95)|swing_damage(28, cut)|thrust_damage(23, pierce), imodbits_sword_high],
["sword_medieval_b_small", "Short Sword", [("sword_medieval_b_small",0),("sword_medieval_b_small_scabbard",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
558, weight(1.25)|difficulty(9)|spd_rtng(103)|weapon_length(82)|swing_damage(27, cut)|thrust_damage(25, pierce), imodbits_sword_high],
["sword_medieval_c_long", "Arming Sword", [("sword_medieval_c_long",0),("sword_medieval_c_long_scabbard",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
880, weight(1.5)|difficulty(10)|spd_rtng(98)|weapon_length(102)|swing_damage(28, cut)|thrust_damage(28, pierce), imodbits_sword_high],
["sword_medieval_d_long", "Knightly Sword", [("sword_medieval_d_long",0),("sword_medieval_d_long_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
950, weight(1.5)|difficulty(12)|spd_rtng(97)|weapon_length(102)|swing_damage(34, cut)|thrust_damage(26, pierce), imodbits_sword],
["sword_viking_c", "Nordic Sword", [("sword_viking_c",0),("sword_viking_c_scabbard",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
647, weight(1.5)|difficulty(9)|spd_rtng(99)|weapon_length(95)|swing_damage(29, cut)|thrust_damage(21, pierce), imodbits_sword_high],
["sword_viking_b_small", "Nordic Short Sword", [("sword_viking_b_small",0),("sword_viking_b_small_scabbard",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
572, weight(1.25)|difficulty(9)|spd_rtng(102)|weapon_length(82)|swing_damage(28, cut)|thrust_damage(23, pierce), imodbits_sword_high],
["sword_viking_a_long", "Nordic Long Sword", [("sword_viking_a_long",0),("sword_viking_a_long_scabbard",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
842, weight(1.5)|difficulty(10)|spd_rtng(97)|weapon_length(101)|swing_damage(30, cut)|thrust_damage(20, pierce), imodbits_sword],
["arabian_sword_a", "Arabian Sword", [("arabian_sword_a",0),("scab_arabian_sword_a",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
612, weight(1.5)|difficulty(9)|spd_rtng(99)|weapon_length(100)|swing_damage(27, cut)|thrust_damage(20, pierce), imodbits_sword_high],
["arabian_sword_b", "Arabian Arming Sword", [("arabian_sword_b",0),("scab_arabian_sword_b",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
832, weight(1.75)|difficulty(11)|spd_rtng(99)|weapon_length(100)|swing_damage(29, cut)|thrust_damage(20, pierce), imodbits_sword_high],
["arabian_sword_c", "Arabian Cavalry Sword", [("arabian_sword_c",0),("scab_arabian_sword_c",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
945, weight(2.0)|difficulty(12)|spd_rtng(97)|weapon_length(106)|swing_damage(30, cut)|thrust_damage(21, pierce), imodbits_sword_high],
["arabian_sword_d", "Arabian Guard Sword", [("arabian_sword_d",0),("scab_arabian_sword_d",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
893, weight(1.5)|difficulty(10)|spd_rtng(98)|weapon_length(100)|swing_damage(31, cut)|thrust_damage(21, pierce), imodbits_sword_high],
["scimitar", "Scimitar", [("scimitar_a",0),("scab_scimeter_a", ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
750, weight(1.5)|difficulty(9)|spd_rtng(101)|weapon_length(97)|swing_damage(30, cut)|thrust_damage(0, pierce), imodbits_sword_high],
["scimitar_b", "Elite Scimitar", [("scimitar_b",0),("scab_scimeter_b", ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
890, weight(1.5)|difficulty(10)|spd_rtng(100)|weapon_length(100)|swing_damage(32, cut)|thrust_damage(0, pierce), imodbits_sword_high],
["khergit_sword_c", "Sabre", [("khergit_sword_c",0),("khergit_sword_c_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
580, weight(1.5)|difficulty(9)|spd_rtng(101)|weapon_length(88)|swing_damage(31, cut), imodbits_sword_high],
["khergit_sword_d", "Heavy Sabre", [("khergit_sword_d",0),("khergit_sword_d_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
734, weight(1.75)|difficulty(12)|spd_rtng(98)|weapon_length(88)|swing_damage(34, cut), imodbits_sword_high],
["khergit_sword_two_handed_a", "Two Handed Sabre", [("khergit_sword_two_handed_a",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary, itc_nodachi|itcf_carry_sword_back,
2523, weight(2.75)|difficulty(15)|spd_rtng(96)|weapon_length(113)|swing_damage(40, cut)|thrust_damage(0, pierce), imodbits_sword_high],
["two_handed_cleaver", "War Cleaver", [("military_cleaver_a",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary, itc_nodachi|itcf_carry_sword_back,
2440, weight(2.75)|difficulty(15)|spd_rtng(93)|weapon_length(120)|swing_damage(45, cut)|thrust_damage(0, cut), imodbits_sword_high],
["military_cleaver_b", "Soldier's Cleaver", [("military_cleaver_b",0)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
693, weight(1.5)|difficulty(10)|spd_rtng(95)|weapon_length(91)|swing_damage(31, cut)|thrust_damage(0, pierce), imodbits_sword_high],
["military_cleaver_c", "Military Cleaver", [("military_cleaver_c",0)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
763, weight(1.5)|difficulty(12)|spd_rtng(95)|weapon_length(91)|swing_damage(35, cut)|thrust_damage(0, pierce), imodbits_sword_high],
["bastard_sword_a", "Bastard Sword", [("bastard_sword_a",0),("bastard_sword_a_scabbard", ixmesh_carry)], itp_type_two_handed_wpn|itp_primary, itc_bastardsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
1294, weight(2.0)|difficulty(15)|spd_rtng(98)|weapon_length(98)|swing_damage(35, cut)|thrust_damage(26, pierce), imodbits_sword_high],
["bastard_sword_b", "Heavy Bastard Sword", [("bastard_sword_b",0),("bastard_sword_b_scabbard", ixmesh_carry)], itp_type_two_handed_wpn|itp_primary, itc_bastardsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
1526, weight(2.25)|difficulty(15)|spd_rtng(97)|weapon_length(105)|swing_damage(37, cut)|thrust_damage(27, pierce), imodbits_sword_high],
["sword_two_handed_b", "Two Handed Sword", [("sword_two_handed_b",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary, itc_greatsword|itcf_carry_sword_back,
1970, weight(2.75)|difficulty(15)|spd_rtng(97)|weapon_length(109)|swing_damage(40, cut)|thrust_damage(28, pierce), imodbits_sword_high ],
["sword_two_handed_a", "Great Sword", [("sword_two_handed_a", 0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary, itc_greatsword|itcf_carry_sword_back,
4134, weight(2.75)|difficulty(15)|spd_rtng(96)|weapon_length(119)|swing_damage(42, cut)|thrust_damage(29, pierce), imodbits_sword_high],
["one_handed_war_axe_b", "One Handed War Axe", [("one_handed_war_axe_b",0)], itp_type_one_handed_wpn|itp_primary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
490, weight(1.5)|difficulty(10)|spd_rtng(94)|weapon_length(71)|swing_damage(31, cut)|thrust_damage(0, pierce), imodbits_axe],
["one_handed_battle_axe_a", "One Handed Axe", [("one_handed_battle_axe_a",0)], itp_type_one_handed_wpn|itp_primary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
521, weight(1.5)|difficulty(10)|spd_rtng(95)|weapon_length(73)|swing_damage(29, cut)|thrust_damage(0, pierce), imodbits_axe],
["one_handed_battle_axe_b", "One Handed Battle Axe", [("one_handed_battle_axe_b",0)], itp_type_one_handed_wpn|itp_primary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
830, weight(1.75)|difficulty(14)|spd_rtng(97)|weapon_length(76)|swing_damage(36, cut)|thrust_damage(0, pierce), imodbits_axe],
["one_handed_battle_axe_c", "Spiked One Handed Battle Axe", [("one_handed_battle_axe_c",0)], itp_type_one_handed_wpn|itp_primary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
890, weight(2.0)|difficulty(14)|spd_rtng(97)|weapon_length(73)|swing_damage(37, cut)|thrust_damage(0, pierce), imodbits_axe],
["sarranid_axe_a", "Iron Battle Axe", [("one_handed_battle_axe_g",0)], itp_type_one_handed_wpn|itp_primary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
1150, weight(1.75)|difficulty(12)|spd_rtng(97)|weapon_length(71)|swing_damage(35, cut)|thrust_damage(0, pierce), imodbits_axe],
["sarranid_axe_b", "Iron War Axe", [("one_handed_battle_axe_h",0)], itp_type_one_handed_wpn|itp_primary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
1360, weight(1.75)|difficulty(12)|spd_rtng(97)|weapon_length(69)|swing_damage(38, cut)|thrust_damage(0, pierce), imodbits_axe],
["two_handed_axe", "Two Handed Axe", [("two_handed_battle_axe_a",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary|itp_bonus_against_shield|itp_wooden_parry|itp_unbalanced, itc_nodachi|itcf_carry_axe_back,
1490, weight(4.5)|difficulty(15)|spd_rtng(96)|weapon_length(89)|swing_damage(38, cut)|thrust_damage(0, pierce), imodbits_axe],
["two_handed_battle_axe", "Two Handed War Axe", [("two_handed_battle_axe_b",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary|itp_bonus_against_shield|itp_wooden_parry|itp_unbalanced, itc_nodachi|itcf_carry_axe_back,
2025, weight(4.5)|difficulty(15)|spd_rtng(96)|weapon_length(90)|swing_damage(44, cut)|thrust_damage(0, pierce), imodbits_axe],
["shortened_voulge", "Shortened Voulge", [("two_handed_battle_axe_c",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary|itp_bonus_against_shield|itp_wooden_parry|itp_unbalanced, itc_nodachi|itcf_carry_axe_back,
2328, weight(5.0)|difficulty(15)|spd_rtng(92)|weapon_length(99)|swing_damage(45, cut)|thrust_damage(0, pierce), imodbits_axe],
["bardiche", "Bardiche", [("two_handed_battle_axe_d",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary|itp_bonus_against_shield|itp_wooden_parry|itp_unbalanced, itc_nodachi|itcf_carry_axe_back,