Advertisement
Ramaraunt1

Untitled

Apr 28th, 2017
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 253.58 KB | None | 0 0
  1. from module_constants import *
  2. from header_items import *
  3. from header_operations import *
  4. from header_triggers import *
  5. import header_debug as dbg
  6. import header_lazy_evaluation as lazy
  7.  
  8. ####################################################################################################################
  9. # Each item record contains the following fields:
  10. # 1) Item id: used for referencing items in other files.
  11. # The prefix itm_ is automatically added before each item id.
  12. # 2) Item name. Name of item as it'll appear in inventory window
  13. # 3) List of meshes. Each mesh record is a tuple containing the following fields:
  14. # 3.1) Mesh name.
  15. # 3.2) Modifier bits that this mesh matches.
  16. # Note that the first mesh record is the default.
  17. # 4) Item flags. See header_items.py for a list of available flags.
  18. # 5) Item capabilities. Used for which animations this item is used with. See header_items.py for a list of available flags.
  19. # 6) Item value.
  20. # 7) Item stats: Bitwise-or of various stats about the item such as:
  21. # weight, abundance, difficulty, head_armor, body_armor,leg_armor, etc...
  22. # 8) Modifier bits: Modifiers that can be applied to this item.
  23. # 9) [Optional] Triggers: List of simple triggers to be associated with the item.
  24. # 10) [Optional] Factions: List of factions that item can be found as merchandise.
  25. ####################################################################################################################
  26.  
  27. # Some constants for ease of use.
  28. imodbits_none = 0
  29. imodbits_horse_basic = imodbit_swaybacked|imodbit_lame|imodbit_spirited|imodbit_heavy|imodbit_stubborn
  30. imodbits_cloth = imodbit_tattered|imodbit_ragged|imodbit_sturdy|imodbit_thick|imodbit_hardened
  31. imodbits_armor = imodbit_rusty|imodbit_battered|imodbit_crude|imodbit_thick|imodbit_reinforced|imodbit_lordly
  32. imodbits_plate = imodbit_cracked|imodbit_rusty|imodbit_battered|imodbit_crude|imodbit_thick|imodbit_reinforced|imodbit_lordly
  33. imodbits_polearm = imodbit_cracked|imodbit_bent|imodbit_balanced
  34. imodbits_shield = imodbit_cracked|imodbit_battered|imodbit_thick|imodbit_reinforced
  35. imodbits_sword = imodbit_rusty|imodbit_chipped|imodbit_balanced|imodbit_tempered
  36. imodbits_sword_high = imodbit_rusty|imodbit_chipped|imodbit_balanced|imodbit_tempered|imodbit_masterwork
  37. imodbits_axe = imodbit_rusty|imodbit_chipped|imodbit_heavy
  38. imodbits_mace = imodbit_rusty|imodbit_chipped|imodbit_heavy
  39. imodbits_pick = imodbit_rusty|imodbit_chipped|imodbit_balanced|imodbit_heavy
  40. imodbits_bow = imodbit_cracked|imodbit_bent|imodbit_strong|imodbit_masterwork
  41. imodbits_crossbow = imodbit_cracked|imodbit_bent|imodbit_masterwork
  42. imodbits_missile = imodbit_bent|imodbit_large_bag
  43. imodbits_thrown = imodbit_bent|imodbit_heavy|imodbit_balanced|imodbit_large_bag
  44. imodbits_thrown_minus_heavy = imodbit_bent|imodbit_balanced|imodbit_large_bag
  45.  
  46. imodbits_horse_good = imodbit_spirited|imodbit_heavy
  47. imodbits_good = imodbit_sturdy|imodbit_thick|imodbit_hardened|imodbit_reinforced
  48. imodbits_bad = imodbit_rusty|imodbit_chipped|imodbit_tattered|imodbit_ragged|imodbit_cracked|imodbit_bent
  49.  
  50. imodbit_female = imodbit_meek
  51.  
  52. tag_item_class = -100.0
  53. tag_item_herd_animal = -101.0
  54.  
  55. # Set a class for this item - listed in module_constants prefixed with item_class_ - with an optional associated value.
  56. def itm_class(class_id, value=0):
  57. return (tag_item_class, class_id, value)
  58.  
  59. # Mark a horse item as a herd animal. Only use for the adult item, not the child.
  60. 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):
  61. return [[tag_item_herd_animal, child_item, grow_age, max_in_herd, attack_reaction, death_sound, meat, hide, wildness]]
  62.  
  63. # Display the agent's heraldic banner or color on special item meshes, specifying the appropriate entry from module_tableau_materials.
  64. def init_heraldic_item(tableau):
  65. return [(ti_on_init_item,
  66. [(store_trigger_param_1, ":agent_id"),
  67. (store_trigger_param_2, ":troop_id"),
  68. (call_script, "script_item_set_banner", tableau, ":agent_id", ":troop_id"),
  69. ]),
  70. itm_class(item_class_heraldic)]
  71.  
  72. # Template for faction banner items.
  73. # 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.
  74. def itm_faction_banner(banner_id):
  75. 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,
  76. 1200, weight(7.0)|difficulty(14)|spd_rtng(70)|weapon_length(250)|swing_damage(10, blunt)|thrust_damage(5, blunt), imodbits_none,
  77. [(ti_on_init_item, [(cur_item_set_tableau_material, "tableau_faction_banner_pole", "mesh_banner_" + banner_id)])]]
  78.  
  79. # Template for castle capture point banner items (display only, not allowing pickup).
  80. def itm_castle_banner(faction, suffix):
  81. return ["pw_banner_castle_" + faction + suffix, "Castle Banner", [("pw_banner_castle",0)], itp_no_pick_up_from_ground, 0,
  82. 0, 0, imodbits_none, [(ti_on_init_item, [(cur_item_set_tableau_material, "tableau_castle_banner_" + suffix, faction)])]]
  83.  
  84. # Template for castle wall banner items (display only, not allowing pickup).
  85. def itm_wall_banner(faction, suffix):
  86. return ["pw_banner_wall_" + faction + suffix, "Wall Banner", [("pw_banner_wall",0)], itp_no_pick_up_from_ground, 0,
  87. 0, 0, imodbits_none, [(ti_on_init_item, [(cur_item_set_tableau_material, "tableau_castle_banner_" + suffix, faction)])]]
  88.  
  89. def itm_throw_wheat_trigger():
  90. return (ti_on_weapon_attack,
  91. [(multiplayer_is_server),
  92. (position_move_x, pos1, -10),
  93. (position_move_y, pos1, 50),
  94. (position_move_z, pos1, -50),
  95. (position_rotate_x, pos1, -30),
  96. (position_rotate_y, pos1, -30),
  97. (particle_system_burst, "psys_throw_wheat", pos1, 50),
  98. ])
  99.  
  100. def itm_read_book_trigger(string_id):
  101. return (ti_on_weapon_attack,
  102. [(store_trigger_param_1, ":agent_id"),
  103. (call_script, "script_cf_read_book", string_id, ":agent_id"),
  104. ])
  105.  
  106. # Swap between different items when swinging, to change visual appearance.
  107. def itm_swap_item_trigger(this_item, other_item):
  108. return (ti_on_weapon_attack,
  109. [(store_trigger_param_1, ":agent_id"),
  110. (assign, ":loop_end", ek_item_3 + 1),
  111. (try_for_range, ":equip_slot", ek_item_0, ":loop_end"),
  112. (agent_get_item_slot, ":equip_item_id", ":agent_id", ":equip_slot"),
  113. (eq, ":equip_item_id", this_item),
  114. (assign, ":loop_end", -1),
  115. (val_add, ":equip_slot", 1),
  116. (agent_unequip_item, ":agent_id", this_item, ":equip_slot"),
  117. (agent_equip_item, ":agent_id", other_item, ":equip_slot"),
  118. (agent_set_wielded_item, ":agent_id", other_item),
  119. (try_end),
  120. ])
  121.  
  122. # Attempt to process a nearby animal when swinging.
  123. def itm_butchering_knife():
  124. return (ti_on_weapon_attack,
  125. [(multiplayer_is_server),
  126. (store_trigger_param_1, ":agent_id"),
  127. (agent_get_troop_id, ":troop_id", ":agent_id"),
  128. (store_skill_level, ":skill", "skl_herding", ":troop_id"),
  129. (gt, ":skill", 0),
  130. (call_script, "script_cf_use_butchering_knife", ":agent_id"),
  131. ])
  132.  
  133. items = [
  134. ["no_item", "INVALID ITEM", [("invalid_item", 0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_no_parry, itc_dagger,
  135. 0, weight(1)|spd_rtng(1)|weapon_length(1)|swing_damage(1, blunt)|thrust_damage(1, blunt), imodbits_none],
  136. ["no_head", "INVALID HEAD", [("invalid_item", 0)], itp_type_head_armor, 0,
  137. 0, weight(1)|head_armor(1)|difficulty(0), imodbits_none],
  138. ["no_body", "INVALID BODY", [("invalid_item", 0)], itp_type_body_armor, 0,
  139. 0, weight(1)|body_armor(1)|difficulty(0), imodbits_none],
  140. ["no_foot", "INVALID FOOT", [("invalid_item", 0)], itp_type_foot_armor, 0,
  141. 0, weight(1)|leg_armor(1)|difficulty(0), imodbits_none],
  142. ["no_hand", "INVALID HAND", [("invalid_item", 0)], itp_type_hand_armor, 0,
  143. 0, weight(1)|body_armor(1)|difficulty(0), imodbits_none],
  144. ["no_horse", "INVALID HORSE", [("invalid_item", 0)], itp_type_horse, 0,
  145. 0, hit_points(1)|body_armor(1)|difficulty(0)|horse_speed(10)|horse_maneuver(40)|horse_charge(1)|horse_scale(1), imodbits_none],
  146.  
  147. ["tattered_headcloth", "Tattered Headcloth", [("headcloth_a_new", 0)], itp_type_head_armor, 0,
  148. 14, weight(0.5)|head_armor(3)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_d")],
  149. ["ragged_woolen_cap", "Ragged Woolen Cap", [("woolen_cap_new", 0)], itp_type_head_armor, 0,
  150. 16, weight(1)|head_armor(4)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_e")],
  151. ["stained_felt_hat_b", "Stained Felt Hat", [("felt_hat_b_new", 0)], itp_type_head_armor, 0,
  152. 15, weight(1)|head_armor(4)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_b")],
  153.  
  154. ["straw_hat", "Straw Hat", [("straw_hat_new", 0)], itp_type_head_armor, 0,
  155. 29, weight(1)|head_armor(2)|difficulty(0), imodbits_cloth],
  156. ["head_wrappings", "Head Wrapping", [("head_wrapping", 0)], itp_type_head_armor|itp_fit_to_head, 0,
  157. 26, weight(0.25)|head_armor(3), imodbits_cloth],
  158. ["headcloth", "Headcloth", [("headcloth_a_new", 0)], itp_type_head_armor, 0,
  159. 80, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_d")],
  160. ["woolen_cap", "Woolen Cap", [("woolen_cap_new", 0)], itp_type_head_armor, 0,
  161. 62, weight(1)|head_armor(6)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_e")],
  162. ["sarranid_felt_hat", "Felt Hat", [("sar_helmet3",0)], itp_type_head_armor, 0,
  163. 55, weight(1)|head_armor(5)|difficulty(0), imodbits_cloth],
  164. ["sarranid_felt_head_cloth", "Head Cloth", [("common_tulbent",0)], itp_type_head_armor|itp_attach_armature, 0,
  165. 221, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
  166. ["sarranid_felt_head_cloth_b", "Head Cloth", [("common_tulbent_b",0)], itp_type_head_armor|itp_attach_armature, 0,
  167. 225, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
  168. ["bride_crown", "Crown of Flowers", [("bride_crown",0)], itp_type_head_armor|itp_doesnt_cover_hair|itp_attach_armature, 0,
  169. 302, weight(0.5)|head_armor(0)|difficulty(0), imodbits_cloth|imodbit_female],
  170. ["khergit_lady_hat", "Blue Head Scarf", [("khergit_lady_hat",0)], itp_type_head_armor|itp_doesnt_cover_hair|itp_fit_to_head, 0,
  171. 239, weight(0.5)|head_armor(1)|difficulty(0), imodbits_cloth|imodbit_female],
  172. ["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,
  173. 267, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
  174. ["sarranid_head_cloth", "Lady Head Cloth", [("tulbent",0)], itp_type_head_armor|itp_doesnt_cover_hair|itp_attach_armature, 0,
  175. 321, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
  176. ["sarranid_head_cloth_b", "Lady Head Cloth", [("tulbent_b",0)], itp_type_head_armor|itp_doesnt_cover_hair|itp_attach_armature, 0,
  177. 340, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
  178. ["wimple_a", "Wimple", [("wimple_a_new",0)], itp_type_head_armor|itp_fit_to_head, 0,
  179. 230, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
  180. ["wimple_b", "Wimple", [("wimple_b_new",0)], itp_type_head_armor|itp_fit_to_head, 0,
  181. 230, weight(0.5)|head_armor(4)|difficulty(0), imodbits_cloth|imodbit_female],
  182. ["barbette", "Barbette", [("barbette_new",0)], itp_type_head_armor|itp_fit_to_head, 0,
  183. 403, weight(1.0)|head_armor(8)|difficulty(0), imodbits_cloth|imodbit_female],
  184. ["arming_cap", "Arming Cap", [("arming_cap_a_new", 0)], itp_type_head_armor, 0,
  185. 78, weight(1)|head_armor(7)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_d")],
  186. ["ladys_hood", "Woolen Hood", [("ladys_hood_new", 0)], itp_type_head_armor, 0,
  187. 120, weight(1)|head_armor(8)|difficulty(0), imodbits_cloth],
  188. ["fur_hat", "Fur Hat", [("fur_hat_a_new", 0)], itp_type_head_armor, 0,
  189. 110, weight(0.5)|head_armor(8)|difficulty(0), imodbits_cloth],
  190. ["felt_hat", "Felt Hat", [("felt_hat_a_new", 0)], itp_type_head_armor, 0,
  191. 74, weight(1)|head_armor(8)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_b")],
  192. ["felt_hat_b", "Felt Hat", [("felt_hat_b_new", 0)], itp_type_head_armor, 0,
  193. 85, weight(1)|head_armor(8)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_b")],
  194. ["leather_cap", "Leather Cap", [("leather_cap_a_new", 0)], itp_type_head_armor, 0,
  195. 106, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth],
  196. ["common_hood", "Hood", [("hood_new", 0)], itp_type_head_armor, 0,
  197. 129, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_e")],
  198. ["hood_b", "Hood", [("hood_b", 0)], itp_type_head_armor, 0,
  199. 116, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth],
  200. ["hood_c", "Hood", [("hood_c", 0)], itp_type_head_armor, 0,
  201. 124, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth],
  202. ["hood_d", "Hood", [("hood_d", 0)], itp_type_head_armor, 0,
  203. 131, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth],
  204. ["nomad_cap", "Nomad Cap", [("nomad_cap_a_new", 0)], itp_type_head_armor, 0,
  205. 272, weight(2.25)|head_armor(15)|difficulty(8), imodbits_cloth],
  206. ["nomad_cap_b", "Nomad Cap", [("nomad_cap_b_new",0)], itp_type_head_armor, 0,
  207. 243, weight(0.75)|head_armor(13)|difficulty(0), imodbits_cloth],
  208. ["black_hood", "Black Hood", [("hood_black",0)], itp_type_head_armor, 0,
  209. 143, weight(2)|head_armor(11)|difficulty(0), imodbits_cloth],
  210. ["surgeon_coif", "Surgeon's Coif", [("pw_surgeon_coif",0)], itp_type_head_armor, 0,
  211. 182, weight(1.5)|head_armor(10)|difficulty(0), imodbits_cloth],
  212. ["pilgrim_hood", "Pilgrim Hood", [("pilgrim_hood",0)], itp_type_head_armor, 0,
  213. 123, weight(1.25)|head_armor(11)|difficulty(0), imodbits_cloth],
  214. ["priest_coif", "Priestly Coif", [("pw_priest_coif",0)], itp_type_head_armor, 0,
  215. 265, weight(1)|head_armor(10)|difficulty(0), imodbits_cloth],
  216. ["padded_coif", "Padded Coif", [("padded_coif_a_new", 0)], itp_type_head_armor, 0,
  217. 116, weight(1)|head_armor(11)|difficulty(0), imodbits_cloth, init_heraldic_item("tableau_colored_helmets_new_b")],
  218. ["turban", "Turban", [("tuareg_open",0)], itp_type_head_armor, 0,
  219. 143, weight(2)|head_armor(11)|difficulty(0), imodbits_cloth],
  220. ["leather_steppe_cap_a", "Steppe Cap", [("leather_steppe_cap_a_new",0)], itp_type_head_armor, 0,
  221. 203, weight(1)|head_armor(12)|difficulty(7), imodbits_cloth],
  222. ["leather_steppe_cap_b", "Steppe Cap", [("tattered_steppe_cap_b_new",0)], itp_type_head_armor, 0,
  223. 234, weight(1)|head_armor(14)|difficulty(7), imodbits_cloth],
  224. ["nordic_archer_helmet", "Leather Helmet", [("Helmet_A_vs2",0)], itp_type_head_armor, 0,
  225. 240, weight(1.25)|head_armor(14)|difficulty(7), imodbits_plate],
  226. ["vaegir_fur_cap", "Cap with Fur", [("vaeg_helmet3",0)], itp_type_head_armor, 0,
  227. 250, weight(2)|head_armor(15)|difficulty(7), imodbits_plate],
  228. ["steppe_cap", "Steppe Cap", [("steppe_cap_a_new", 0)], itp_type_head_armor, 0,
  229. 276, weight(1)|head_armor(16)|difficulty(7), imodbits_cloth],
  230. ["leather_warrior_cap", "Leather Warrior Cap", [("skull_cap_new_b",0)], itp_type_head_armor, 0,
  231. 340, weight(1)|head_armor(18)|difficulty(7), imodbits_cloth],
  232. ["sarranid_warrior_cap", "Turban with Warrior Cap", [("tuareg_helmet",0)], itp_type_head_armor|itp_covers_beard, 0,
  233. 344, weight(2)|head_armor(19)|difficulty(7), imodbits_plate],
  234. ["nordic_veteran_archer_helmet", "Leather Helmet", [("Helmet_A",0)], itp_type_head_armor, 0,
  235. 356, weight(1.5)|head_armor(20)|difficulty(7), imodbits_plate],
  236. ["skullcap", "Skullcap", [("skull_cap_new_a",0)], itp_type_head_armor, 0,
  237. 376, weight(1.0)|head_armor(20)|difficulty(7), imodbits_plate],
  238. ["vaegir_fur_helmet", "Fur Helmet", [("vaeg_helmet2",0)], itp_type_head_armor, 0,
  239. 395, weight(1.5)|head_armor(21)|difficulty(7), imodbits_plate],
  240. ["bishop_mitre", "Bishop's Mitre", [("pw_bishop_mitre",0)], itp_type_head_armor, 0,
  241. 546, weight(1.5)|head_armor(13)|difficulty(8), imodbits_cloth],
  242. ["mail_coif", "Mail Coif", [("mail_coif_new",0)], itp_type_head_armor, 0,
  243. 403, weight(1.25)|head_armor(22)|difficulty(9), imodbits_armor],
  244. ["footman_helmet", "Footman's Helmet", [("skull_cap_new",0)], itp_type_head_armor, 0,
  245. 495, weight(1.5)|head_armor(24)|difficulty(9), imodbits_plate],
  246. ["sarranid_horseman_helmet", "Horseman Helmet", [("sar_helmet2",0)], itp_type_head_armor, 0,
  247. 580, weight(2)|head_armor(25)|difficulty(9), imodbits_plate],
  248. ["nasal_helmet", "Nasal Helmet", [("nasal_helmet_b",0)], itp_type_head_armor, 0,
  249. 605, weight(1.25)|head_armor(26)|difficulty(9), imodbits_plate],
  250. ["norman_helmet", "Helmet with Cap", [("norman_helmet_a",0)], itp_type_head_armor|itp_fit_to_head, 0,
  251. 654, weight(1.25)|head_armor(28)|difficulty(9), imodbits_plate],
  252. ["nordic_footman_helmet", "Footman Helmet", [("Helmet_B_vs2",0)], itp_type_head_armor|itp_fit_to_head, 0,
  253. 670, weight(1.75)|head_armor(30)|difficulty(9), imodbits_plate],
  254. ["khergit_war_helmet", "War Helmet", [("tattered_steppe_cap_a_new",0)], itp_type_head_armor, 0,
  255. 710, weight(2)|head_armor(31)|difficulty(9), imodbits_plate],
  256. ["segmented_helmet", "Segmented Helmet", [("segmented_helm_new",0)], itp_type_head_armor, 0,
  257. 724, weight(1.25)|head_armor(31)|difficulty(9), imodbits_plate],
  258. ["vaegir_spiked_helmet", "Spiked Cap", [("vaeg_helmet1",0)], itp_type_head_armor, 0,
  259. 823, weight(2)|head_armor(32)|difficulty(9), imodbits_plate],
  260. ["helmet_with_neckguard", "Helmet with Neckguard", [("neckguard_helm_new",0)], itp_type_head_armor, 0,
  261. 840, weight(1.5)|head_armor(33)|difficulty(10), imodbits_plate],
  262. ["flat_topped_helmet", "Flat Topped Helmet", [("flattop_helmet_new",0)], itp_type_head_armor, 0,
  263. 869, weight(1.75)|head_armor(33)|difficulty(10), imodbits_plate],
  264. ["nordic_fighter_helmet", "Fighter Helmet", [("Helmet_B",0)], itp_type_head_armor|itp_fit_to_head, 0,
  265. 912, weight(2)|head_armor(34)|difficulty(10), imodbits_plate],
  266. ["kettle_hat", "Kettle Hat", [("kettle_hat_new",0)], itp_type_head_armor, 0,
  267. 940, weight(1.75)|head_armor(35)|difficulty(10), imodbits_plate],
  268. ["sarranid_helmet1", "Keffiyeh Helmet", [("sar_helmet1",0)], itp_type_head_armor, 0,
  269. 923, weight(2)|head_armor(35)|difficulty(11), imodbits_plate],
  270. ["vaegir_lamellar_helmet", "Helmet with Lamellar Guard", [("vaeg_helmet4",0)], itp_type_head_armor, 0,
  271. 960, weight(2)|head_armor(38)|difficulty(11), imodbits_plate],
  272. ["spiked_helmet", "Spiked Helmet", [("spiked_helmet_new",0)], itp_type_head_armor, 0,
  273. 1078, weight(2)|head_armor(38)|difficulty(11), imodbits_plate],
  274. ["sarranid_mail_coif", "Mail Coif", [("tuareg_helmet2",0)], itp_type_head_armor, 0,
  275. 1230, weight(2)|head_armor(39)|difficulty(13), imodbits_plate],
  276. ["nordic_huscarl_helmet", "Huscarl's Helmet", [("Helmet_C_vs2",0)], itp_type_head_armor, 0,
  277. 1420, weight(2)|head_armor(40)|difficulty(14), imodbits_plate],
  278. ["bascinet", "Bascinet", [("bascinet_avt_new",0)], itp_type_head_armor, 0,
  279. 1579, weight(2)|head_armor(42)|difficulty(14), imodbits_plate],
  280. ["bascinet_2", "Bascinet with Aventail", [("bascinet_new_a",0)], itp_type_head_armor, 0,
  281. 1654, weight(2.25)|head_armor(44)|difficulty(14), imodbits_plate],
  282. ["bascinet_3", "Bascinet with Nose Guard", [("bascinet_new_b",0)], itp_type_head_armor, 0,
  283. 1683, weight(2.5)|head_armor(45)|difficulty(14), imodbits_plate],
  284. ["vaegir_noble_helmet", "Nobleman Helmet", [("vaeg_helmet7",0)], itp_type_head_armor, 0,
  285. 1710, weight(2)|head_armor(45)|difficulty(14), imodbits_plate],
  286. ["guard_helmet", "Guard Helmet", [("reinf_helmet_new",0)], itp_type_head_armor, 0,
  287. 2355, weight(2.5)|head_armor(47)|difficulty(15), imodbits_plate],
  288. ["sarranid_veiled_helmet", "Veiled Helmet", [("sar_helmet4",0)], itp_type_head_armor|itp_covers_beard, 0,
  289. 2341, weight(3)|head_armor(47)|difficulty(15), imodbits_plate],
  290. ["vaegir_war_helmet", "War Helmet", [("vaeg_helmet6",0)], itp_type_head_armor, 0,
  291. 2420, weight(2.25)|head_armor(47)|difficulty(15), imodbits_plate],
  292. ["nordic_warlord_helmet", "Warlord Helmet", [("Helmet_C",0)], itp_type_head_armor, 0,
  293. 3180, weight(2.25)|head_armor(48)|difficulty(15), imodbits_plate],
  294. ["bishop_helm", "Bishop's Helm", [("pw_bishop_helm",0)], itp_type_head_armor|itp_covers_head, 0,
  295. 6034, weight(3.0)|head_armor(49)|difficulty(15), imodbits_plate],
  296. ["full_helm", "Full Helm", [("great_helmet_new_b",0)], itp_type_head_armor|itp_covers_head, 0,
  297. 5121, weight(2.5)|head_armor(51)|difficulty(15), imodbits_plate],
  298. ["vaegir_mask", "War Mask", [("vaeg_helmet8",0)], itp_type_head_armor, 0,
  299. 6950, weight(2.5)|head_armor(50)|difficulty(15), imodbits_plate],
  300. ["vaegir_mask_b", "War Mask", [("vaeg_helmet9",0)], itp_type_head_armor|itp_covers_beard, 0,
  301. 7012, weight(2.75)|head_armor(52)|difficulty(15), imodbits_plate],
  302. ["great_helmet", "Great Helmet", [("great_helmet_new",0)], itp_type_head_armor|itp_covers_head, 0,
  303. 7380, weight(2.75)|head_armor(53)|difficulty(15), imodbits_plate],
  304. ["winged_great_helmet", "Winged Great Helmet", [("maciejowski_helmet_new",0)], itp_type_head_armor|itp_covers_head, 0,
  305. 9240, weight(2.75)|head_armor(55)|difficulty(15), imodbits_plate],
  306. ["black_helmet", "Black Helmet", [("black_helm",0)], itp_type_head_armor, 0,
  307. 9638, weight(2.75)|head_armor(55)|difficulty(15), imodbits_plate],
  308.  
  309. ["ragged_shirt", "Ragged Shirt", [("shirt", 0)], itp_type_body_armor|itp_covers_legs, 0,
  310. 2, weight(1)|body_armor(2)|difficulty(0), imodbits_cloth],
  311. ["old_coarse_tunic", "Old Coarse Tunic", [("coarse_tunic", 0)], itp_type_body_armor|itp_covers_legs, 0,
  312. 23, weight(2)|body_armor(7)|leg_armor(4)|difficulty(0), imodbits_cloth],
  313. ["old_linen_tunic", "Old Linen Tunic", [("linen_tunic", 0)], itp_type_body_armor|itp_covers_legs, 0,
  314. 10, weight(1)|body_armor(4)|leg_armor(1)|difficulty(0), imodbits_cloth],
  315. ["ragged_leather_apron", "Ragged Leather Apron", [("leather_apron", 0)], itp_type_body_armor|itp_covers_legs, 0,
  316. 27, weight(2.5)|body_armor(6)|leg_armor(5)|difficulty(0), imodbits_cloth],
  317. ["old_tabard", "Old Tabard", [("tabard_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
  318. 31, weight(3)|body_armor(8)|leg_armor(4)|difficulty(0), imodbits_cloth],
  319.  
  320. ["shirt", "Shirt", [("shirt", 0)], itp_type_body_armor|itp_covers_legs, 0,
  321. 45, weight(1)|body_armor(5)|difficulty(0), imodbits_cloth],
  322. ["linen_tunic", "Linen Tunic", [("shirt_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
  323. 60, weight(1)|body_armor(6)|leg_armor(1)|difficulty(0), imodbits_cloth],
  324. ["black_robe", "Black Robe", [("robe",0)], itp_type_body_armor|itp_covers_legs, 0,
  325. 43, weight(3.5)|body_armor(8)|leg_armor(6)|difficulty(0), imodbits_cloth],
  326. ["dress", "Dress", [("dress",0)], itp_type_body_armor|itp_covers_legs, 0,
  327. 60, weight(3)|body_armor(6)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
  328. ["blue_dress", "Blue Dress", [("blue_dress_new",0)], itp_type_body_armor|itp_covers_legs, 0,
  329. 76, weight(3)|body_armor(6)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
  330. ["peasant_dress", "Peasant Dress", [("peasant_dress_b_new",0)], itp_type_body_armor|itp_covers_legs, 0,
  331. 83, weight(3)|body_armor(6)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
  332. ["woolen_dress", "Woolen Dress", [("woolen_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
  333. 100, weight(3.75)|body_armor(8)|leg_armor(2)|difficulty(0), imodbits_cloth|imodbit_female],
  334. ["sarranid_common_dress", "Gray Dress", [("sarranid_common_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
  335. 80, weight(5)|body_armor(5)|leg_armor(5)|difficulty(0), imodbits_cloth|imodbit_female],
  336. ["sarranid_common_dress_b", "Brown Dress", [("sarranid_common_dress_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  337. 102, weight(5)|body_armor(6)|leg_armor(5)|difficulty(0), imodbits_cloth|imodbit_female],
  338. ["lady_dress_ruby", "Red Dress", [("lady_dress_r",0)], itp_type_body_armor|itp_covers_legs, 0,
  339. 200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
  340. ["lady_dress_green", "Green Dress", [("lady_dress_g",0)], itp_type_body_armor|itp_covers_legs, 0,
  341. 200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
  342. ["lady_dress_blue", "Blue Dress", [("lady_dress_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  343. 200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
  344. ["court_dress", "Red Pattern Dress", [("court_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
  345. 200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
  346. ["red_dress", "Red Dress", [("red_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
  347. 200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
  348. ["brown_dress", "Brown Dress", [("brown_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
  349. 200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
  350. ["green_dress", "Green Dress", [("green_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
  351. 200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
  352. ["sarranid_lady_dress", "Purple Dress", [("sarranid_lady_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
  353. 200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
  354. ["sarranid_lady_dress_b", "Orange Dress", [("sarranid_lady_dress_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  355. 200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
  356. ["khergit_lady_dress", "Blue Dress", [("khergit_lady_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
  357. 200, weight(3)|body_armor(10)|leg_armor(10)|difficulty(0), imodbits_cloth|imodbit_female],
  358. ["khergit_lady_dress_b", "Leather Dress", [("khergit_lady_dress_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  359. 500, weight(3)|body_armor(15)|leg_armor(20)|difficulty(8), imodbits_cloth|imodbit_female],
  360. ["bride_dress", "Bride Dress", [("bride_dress",0)], itp_type_body_armor|itp_covers_legs, 0,
  361. 2500, weight(3)|body_armor(3)|leg_armor(1)|difficulty(0), imodbits_cloth|imodbit_female],
  362. ["tunic_with_green_cape", "Tunic with Green Cape", [("peasant_man_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  363. 220, weight(1)|body_armor(12)|leg_armor(4)|difficulty(0), imodbits_cloth],
  364. ["rough_tunic", "Rough Tunic", [("pw_rough_tunic",0)], itp_type_body_armor|itp_covers_legs, 0,
  365. 134, weight(1)|body_armor(7)|leg_armor(1)|difficulty(0), imodbits_cloth],
  366. ["red_shirt", "Red Shirt", [("rich_tunic_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  367. 150, weight(1)|body_armor(7)|leg_armor(1)|difficulty(0), imodbits_cloth],
  368. ["pelt_coat", "Pelt Coat", [("thick_coat_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  369. 193, weight(2)|body_armor(11)|leg_armor(3)|difficulty(0), imodbits_cloth],
  370. ["sarranid_cloth_robe", "Worn Robe", [("sar_robe",0)], itp_type_body_armor|itp_covers_legs, 0,
  371. 233, weight(4)|body_armor(9)|leg_armor(9)|difficulty(0), imodbits_cloth],
  372. ["sarranid_cloth_robe_b", "Worn Robe", [("sar_robe_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  373. 237, weight(4)|body_armor(9)|leg_armor(9)|difficulty(0), imodbits_cloth],
  374. ["rawhide_coat", "Rawhide Coat", [("coat_of_plates_b", 0)], itp_type_body_armor|itp_covers_legs, 0,
  375. 220, weight(5)|body_armor(13)|difficulty(0), imodbits_cloth],
  376. ["coarse_tunic", "Tunic with Vest", [("coarse_tunic_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
  377. 87, weight(2)|body_armor(11)|leg_armor(6)|difficulty(0), imodbits_cloth],
  378. ["leather_apron", "Leather Apron", [("leather_apron", 0)], itp_type_body_armor|itp_covers_legs, 0,
  379. 125, weight(3)|body_armor(12)|leg_armor(7)|difficulty(0), imodbits_cloth],
  380. ["fur_coat", "Fur Coat", [("fur_coat", 0)], itp_type_body_armor|itp_covers_legs, 0,
  381. 257, weight(6)|body_armor(13)|leg_armor(6)|difficulty(0), imodbits_armor],
  382. ["friar_robe", "Friar's Robe", [("pw_friar_robe", 0)], itp_type_body_armor|itp_covers_legs, 0,
  383. 342, weight(8)|body_armor(14)|leg_armor(12)|difficulty(0), imodbits_cloth],
  384. ["skirmisher_armor", "Skirmisher Armor", [("skirmisher_armor",0)], itp_type_body_armor|itp_covers_legs, 0,
  385. 374, weight(3)|body_armor(15)|leg_armor(7)|difficulty(6), imodbits_cloth],
  386. ["rich_outfit", "Rich Outfit", [("merchant_outf",0)], itp_type_body_armor|itp_covers_legs, 0,
  387. 348, weight(4)|body_armor(16)|leg_armor(4)|difficulty(0), imodbits_cloth],
  388. ["tabard", "Tabard", [("tabard_b", 0)], itp_type_body_armor|itp_covers_legs, 0,
  389. 230, weight(3)|body_armor(14)|leg_armor(6)|difficulty(6), imodbits_cloth, init_heraldic_item("tableau_heraldic_tabard_b")],
  390. ["khergit_armor", "Tribesman Armor", [("khergit_armor_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
  391. 380, weight(2)|body_armor(14)|difficulty(7), imodbits_cloth],
  392. ["leather_vest_plain", "Leather Vest", [("leather_vest_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
  393. 370, weight(4)|body_armor(15)|leg_armor(7)|difficulty(7), imodbits_cloth],
  394. ["leather_vest", "Heraldic Leather Vest", [("leather_vest_a", 0)], itp_type_body_armor|itp_covers_legs, 0,
  395. 377, weight(4)|body_armor(15)|leg_armor(7)|difficulty(7), imodbits_cloth, init_heraldic_item("tableau_heraldic_leather_vest_a")],
  396. ["leather_jacket", "Leather Jacket", [("leather_jacket_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
  397. 400, weight(3)|body_armor(15)|difficulty(8), imodbits_cloth],
  398. ["priest_robe", "Priestly Robes", [("pw_priest_robe", 0)], itp_type_body_armor|itp_covers_legs, 0,
  399. 453, weight(10)|body_armor(17)|leg_armor(13)|difficulty(8), imodbits_cloth],
  400. ["arena_tunic", "Arena Tunic", [("arena_tunicW_new",0)], itp_type_body_armor|itp_covers_legs, 0,
  401. 473, weight(4)|body_armor(16)|leg_armor(6)|difficulty(8), imodbits_cloth, init_heraldic_item("tableau_colored_arena_tunic")],
  402. ["steppe_armor", "Leather Breastplate", [("lamellar_leather",0)], itp_type_body_armor|itp_covers_legs, 0,
  403. 430, weight(5)|body_armor(16)|leg_armor(8)|difficulty(8), imodbits_cloth, init_heraldic_item("tableau_colored_lamellar_leather")],
  404. ["leather_armor", "Leather Armor", [("tattered_leather_armor_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  405. 450, weight(7)|body_armor(18)|difficulty(8), imodbits_cloth],
  406. ["pilgrim_disguise", "Pilgrim Disguise", [("pilgrim_outfit",0)], itp_type_body_armor|itp_covers_legs, 0,
  407. 710, weight(2)|body_armor(19)|leg_armor(8)|difficulty(8), imodbits_cloth],
  408. ["red_gambeson", "Red Gambeson", [("red_gambeson_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  409. 461, weight(5)|body_armor(21)|leg_armor(5)|difficulty(9), imodbits_cloth],
  410. ["padded_cloth", "Aketon", [("padded_cloth_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  411. 430, weight(11)|body_armor(22)|leg_armor(6)|difficulty(9), imodbits_cloth, init_heraldic_item("tableau_heraldic_padded_cloth_a")],
  412. ["aketon_green", "Padded Cloth", [("padded_cloth_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  413. 454, weight(11)|body_armor(23)|leg_armor(6)|difficulty(9), imodbits_cloth, init_heraldic_item("tableau_heraldic_padded_cloth_b")],
  414. ["archers_vest", "Archer's Padded Vest", [("archers_vest",0)], itp_type_body_armor|itp_covers_legs, 0,
  415. 460, weight(8)|body_armor(23)|leg_armor(10)|difficulty(9), imodbits_cloth],
  416. ["nomad_vest", "Nomad Vest", [("nomad_vest_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
  417. 490, weight(7)|body_armor(22)|leg_armor(8)|difficulty(8), imodbits_cloth],
  418. ["ragged_outfit", "Ragged Outfit", [("ragged_outfit_a_new",0)], itp_type_body_armor|itp_covers_legs, 0,
  419. 521, weight(7)|body_armor(23)|leg_armor(9)|difficulty(8), imodbits_cloth],
  420. ["surgeon_coat", "Surgeon's Coat", [("pw_surgeon_coat", 0)], itp_type_body_armor|itp_covers_legs, 0,
  421. 732, weight(11)|body_armor(24)|leg_armor(9)|difficulty(8), imodbits_cloth],
  422. ["nomad_armor", "Nomad Armor", [("nomad_armor_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
  423. 550, weight(3)|body_armor(24)|difficulty(8), imodbits_cloth],
  424. ["nomad_robe", "Nomad Robe", [("nomad_robe_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  425. 670, weight(10)|body_armor(25)|leg_armor(8)|difficulty(8), imodbits_cloth],
  426. ["light_leather", "Light Leather", [("light_leather",0)], itp_type_body_armor|itp_covers_legs, 0,
  427. 594, weight(5)|body_armor(26)|leg_armor(7)|difficulty(8), imodbits_armor],
  428. ["leather_jerkin", "Leather Jerkin", [("ragged_leather_jerkin",0)], itp_type_body_armor|itp_covers_legs, 0,
  429. 540, weight(6)|body_armor(25)|leg_armor(6)|difficulty(10), imodbits_cloth],
  430. ["padded_leather", "Padded Leather", [("leather_armor_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  431. 623, weight(12)|body_armor(27)|leg_armor(7)|difficulty(9), imodbits_cloth],
  432. ["arena_armor", "Arena Armor", [("arena_armorW_new",0)], itp_type_body_armor|itp_covers_legs, 0,
  433. 650, weight(16)|body_armor(29)|leg_armor(13)|difficulty(9), imodbits_armor, init_heraldic_item("tableau_colored_arena_armor")],
  434. ["tribal_warrior_outfit", "Tribal Warrior Outfit", [("tribal_warrior_outfit_a_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
  435. 720, weight(14)|body_armor(30)|leg_armor(10)|difficulty(9), imodbits_cloth],
  436. ["sarranid_leather_armor", "Leather Armor", [("sarranid_leather_armor",0)], itp_type_body_armor|itp_covers_legs, 0,
  437. 1020, weight(9)|body_armor(32)|leg_armor(12)|difficulty(9), imodbits_armor],
  438. ["courtly_outfit", "Courtly Outfit", [("nobleman_outf", 0)], itp_type_body_armor|itp_covers_legs, 0,
  439. 1320, weight(4)|body_armor(24)|leg_armor(10)|difficulty(9), imodbits_cloth],
  440. ["nobleman_outfit", "Nobleman Outfit", [("nobleman_outfit_b_new", 0)], itp_type_body_armor|itp_covers_legs, 0,
  441. 1348, weight(4)|body_armor(25)|leg_armor(12)|difficulty(9), imodbits_cloth],
  442. ["sarranid_cavalry_robe", "Brown Mail Shirt", [("arabian_armor_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  443. 1220, weight(15)|body_armor(36)|leg_armor(8)|difficulty(9), imodbits_armor],
  444. ["studded_leather_coat", "Studded Leather Coat", [("leather_armor_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  445. 1320, weight(14)|body_armor(36)|leg_armor(10)|difficulty(10), imodbits_armor],
  446. ["byrnie", "Byrnie", [("byrnie_a_new",0)], itp_type_body_armor|itp_covers_legs, 0,
  447. 2101, weight(17)|body_armor(39)|leg_armor(6)|difficulty(10), imodbits_armor],
  448. ["haubergeon", "Haubergeon", [("haubergeon_c",0)], itp_type_body_armor|itp_covers_legs, 0,
  449. 2330, weight(18)|body_armor(41)|leg_armor(6)|difficulty(11), imodbits_armor],
  450. ["arabian_armor_b", "Guard Armor", [("arabian_armor_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  451. 2010, weight(19)|body_armor(38)|leg_armor(8)|difficulty(11), imodbits_armor],
  452. ["lamellar_vest", "Lamellar Vest", [("lamellar_vest_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  453. 2595, weight(18)|body_armor(40)|leg_armor(8)|difficulty(11), imodbits_cloth],
  454. ["lamellar_vest_khergit", "Lamellar Vest", [("lamellar_vest_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  455. 2500, weight(18)|body_armor(40)|leg_armor(8)|difficulty(11), imodbits_cloth, init_heraldic_item("tableau_colored_lamellar_vest_b")],
  456. ["mail_shirt", "Mail Shirt", [("mail_shirt_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  457. 2740, weight(19)|body_armor(39)|leg_armor(12)|difficulty(11), imodbits_armor],
  458. ["mail_hauberk", "Mail Hauberk", [("hauberk_a_new",0)], itp_type_body_armor|itp_covers_legs, 0,
  459. 3320, weight(19)|body_armor(42)|leg_armor(12)|difficulty(11), imodbits_armor],
  460. ["sarranid_mail_shirt", "Orange Mail Shirt", [("sarranian_mail_shirt",0)], itp_type_body_armor|itp_covers_legs, 0,
  461. 4400, weight(19)|body_armor(40)|leg_armor(14)|difficulty(12), imodbits_armor],
  462. ["bishop_armor", "Bishop's Armor", [("pw_bishop_armor", 0)], itp_type_body_armor|itp_covers_legs, 0,
  463. 6345, weight(23)|body_armor(41)|leg_armor(13)|difficulty(14), imodbits_armor],
  464. ["mail_with_surcoat", "Surcoat over Mail", [("mail_long_surcoat_new",0)], itp_type_body_armor|itp_covers_legs, 0,
  465. 5544, weight(22)|body_armor(42)|leg_armor(14)|difficulty(13), imodbits_armor, init_heraldic_item("tableau_heraldic_mail_long_surcoat")],
  466. ["surcoat_over_mail", "Surcoat over Mail", [("surcoat_over_mail_new",0)], itp_type_body_armor|itp_covers_legs, 0,
  467. 5620, weight(22)|body_armor(43)|leg_armor(14)|difficulty(13), imodbits_armor, init_heraldic_item("tableau_heraldic_surcoat_over_mail")],
  468. ["brigandine_red", "Brigandine", [("brigandine_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  469. 5830, weight(19)|body_armor(45)|leg_armor(12)|difficulty(15), imodbits_armor, init_heraldic_item("tableau_heraldic_brigandine_b")],
  470. ["mamluke_mail", "Mail Robe", [("sarranid_elite_cavalary",0)], itp_type_body_armor|itp_covers_legs, 0,
  471. 7900, weight(24)|body_armor(46)|leg_armor(16)|difficulty(15), imodbits_armor],
  472. ["lamellar_armor", "Lamellar Armor", [("lamellar_armor_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  473. 7410, weight(25)|body_armor(46)|leg_armor(13)|difficulty(15), imodbits_armor],
  474. ["scale_armor", "Scale Armor", [("lamellar_armor_e",0)], itp_type_body_armor|itp_covers_legs, 0,
  475. 9558, weight(25)|body_armor(47)|leg_armor(13)|difficulty(15), imodbits_armor],
  476. ["banded_armor", "Banded Armor", [("banded_armor_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  477. 9710, weight(23)|body_armor(46)|leg_armor(14)|difficulty(15), imodbits_armor],
  478. ["cuir_bouilli", "Cuir Bouilli", [("cuir_bouilli_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  479. 9100, weight(24)|body_armor(45)|leg_armor(15)|difficulty(15), imodbits_armor],
  480. ["coat_of_plates", "Coat of Plates", [("coat_of_plates_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  481. 12828, weight(25)|body_armor(47)|leg_armor(16)|difficulty(15), imodbits_armor],
  482. ["coat_of_plates_red", "Heraldic Coat of Plates", [("coat_of_plates_red",0)], itp_type_body_armor|itp_covers_legs, 0,
  483. 12828, weight(25)|body_armor(47)|leg_armor(16)|difficulty(15), imodbits_armor, init_heraldic_item("tableau_heraldic_coat_of_plates")],
  484. ["khergit_elite_armor", "Heraldic Elite Armor", [("lamellar_armor_d",0)], itp_type_body_armor|itp_covers_legs, 0,
  485. 15802, weight(25)|body_armor(48)|leg_armor(16)|difficulty(15), imodbits_armor, init_heraldic_item("tableau_heraldic_lamellar_armor_d")],
  486. ["vaegir_elite_armor", "Elite Armor", [("lamellar_armor_c",0)], itp_type_body_armor|itp_covers_legs, 0,
  487. 15230, weight(25)|body_armor(48)|leg_armor(16)|difficulty(15), imodbits_armor],
  488. ["sarranid_elite_armor", "Elite Armor", [("tunic_armor_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  489. 15605, weight(25)|body_armor(48)|leg_armor(16)|difficulty(15), imodbits_armor ],
  490. ["plate_armor", "Plate Armor", [("full_plate_armor",0)], itp_type_body_armor|itp_covers_legs, 0,
  491. 35030, weight(30)|body_armor(55)|leg_armor(17)|difficulty(15), imodbits_plate],
  492. ["black_armor", "Black Armor", [("black_armor",0)], itp_type_body_armor|itp_covers_legs, 0,
  493. 55200, weight(31)|body_armor(57)|leg_armor(18)|difficulty(15), imodbits_plate],
  494. ["light_heraldic_mail", "Light Heraldic Mail", [("heraldic_armor_new_c",0)], itp_type_body_armor|itp_covers_legs, 0,
  495. 1313, weight(12)|body_armor(30)|leg_armor(5)|difficulty(9), imodbits_armor, init_heraldic_item("tableau_heraldic_armor_c")],
  496. ["heraldic_mail_with_tunic", "Heraldic Mail with Tunic", [("heraldic_armor_new_b",0)], itp_type_body_armor|itp_covers_legs, 0,
  497. 2045, weight(15)|body_armor(35)|leg_armor(8)|difficulty(10), imodbits_armor, init_heraldic_item("tableau_heraldic_armor_b")],
  498. ["heraldic_mail_with_tabard", "Heraldic Mail with Tabard", [("heraldic_armor_new_d",0)], itp_type_body_armor|itp_covers_legs, 0,
  499. 2970, weight(20)|body_armor(40)|leg_armor(10)|difficulty(12), imodbits_armor, init_heraldic_item("tableau_heraldic_armor_d")],
  500. ["heraldic_mail_with_surcoat", "Heraldic Mail with Surcoat", [("heraldic_armor_new_a",0)], itp_type_body_armor|itp_covers_legs, 0,
  501. 7800, weight(25)|body_armor(44)|leg_armor(15)|difficulty(15), imodbits_armor, init_heraldic_item("tableau_heraldic_armor_a")],
  502.  
  503. ["tattered_wrapping_boots", "Tattered Wrapping Boots", [("shoe_fur", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  504. 8, weight(1)|leg_armor(2)|difficulty(0), imodbits_cloth],
  505. ["ripped_woolen_hose", "Ripped Woolen Hose", [("woolen_hose", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  506. 6, weight(1)|leg_armor(1)|difficulty(0), imodbits_cloth],
  507. ["old_hide_boots", "Old Hide Boots", [("boot_nomad_b", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  508. 13, weight(1)|leg_armor(4)|difficulty(0), imodbits_cloth],
  509.  
  510. ["wrapping_boots", "Wrapping Boots", [("wrapping_boots_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  511. 30, weight(1)|leg_armor(3)|difficulty(0), imodbits_cloth],
  512. ["woolen_hose", "Woolen Hose", [("woolen_hose_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  513. 60, weight(1)|leg_armor(4)|difficulty(0), imodbits_cloth],
  514. ["friar_sandals", "Friar's Sandals", [("pw_friar_sandals", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  515. 87, weight(1)|leg_armor(4)|difficulty(0), imodbits_cloth],
  516. ["blue_hose", "Blue Hose", [("blue_hose_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  517. 110, weight(1)|leg_armor(5)|difficulty(0), imodbits_cloth],
  518. ["bride_shoes", "Bride Shoes", [("bride_shoes",0)], itp_type_foot_armor|itp_attach_armature, 0,
  519. 565, weight(1)|leg_armor(1)|difficulty(0), imodbits_cloth|imodbit_female],
  520. ["priest_leggings", "Priestly Leggings", [("pw_priest_leggings", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  521. 230, weight(1)|leg_armor(8)|difficulty(0), imodbits_cloth],
  522. ["sarranid_boots_a", "Pointed Shoes", [("sarranid_shoes",0)], itp_type_foot_armor|itp_attach_armature ,0,
  523. 150, weight(1)|leg_armor(8)|difficulty(0) ,imodbits_cloth ],
  524. ["hunter_boots", "Hunter Boots", [("hunter_boots_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  525. 190, weight(1.25)|leg_armor(9)|difficulty(0), imodbits_cloth],
  526. ["hide_boots", "Hide Boots", [("hide_boots_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  527. 240, weight(1)|leg_armor(10)|difficulty(0), imodbits_cloth],
  528. ["ankle_boots", "Ankle Boots", [("ankle_boots_a_new", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  529. 270, weight(1)|leg_armor(12)|difficulty(0), imodbits_cloth],
  530. ["nomad_boots", "Nomad Boots", [("nomad_boots_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  531. 310, weight(1.25)|leg_armor(14)|difficulty(0), imodbits_cloth],
  532. ["light_leather_boots", "Light Leather Boots", [("light_leather_boots",0)], itp_type_foot_armor|itp_attach_armature, 0,
  533. 366, weight(1)|leg_armor(15)|difficulty(6), imodbits_cloth],
  534. ["leather_boots", "Leather Boots", [("leather_boots_a", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  535. 400, weight(1.25)|leg_armor(16)|difficulty(6), imodbits_cloth],
  536. ["sarranid_boots_b", "Pointed Leather Boots", [("sarranid_boots",0)], itp_type_foot_armor|itp_attach_armature, 0,
  537. 440, weight(1.25)|leg_armor(17)|difficulty(6), imodbits_cloth],
  538. ["khergit_leather_boots", "Black Leather Boots", [("khergit_leather_boots",0)], itp_type_foot_armor|itp_attach_armature, 0,
  539. 465, weight(1.5)|leg_armor(18)|difficulty(8), imodbits_cloth],
  540. ["sarranid_boots_c", "Plated Boots", [("sarranid_camel_boots",0)], itp_type_foot_armor|itp_attach_armature, 0,
  541. 532, weight(2.5)|leg_armor(20)|difficulty(9) ,imodbits_plate ],
  542. ["splinted_leather_greaves", "Splinted Leather Greaves", [("leather_greaves_a",0)], itp_type_foot_armor|itp_attach_armature, 0,
  543. 612, weight(3)|leg_armor(21)|difficulty(9), imodbits_armor],
  544. ["bishop_chausses", "Bishop's Chausses", [("pw_bishop_chausses", 0)], itp_type_foot_armor|itp_attach_armature, 0,
  545. 886, weight(3)|leg_armor(22)|difficulty(10), imodbits_armor],
  546. ["mail_chausses", "Mail Chausses", [("mail_chausses_a",0)], itp_type_foot_armor|itp_attach_armature, 0,
  547. 930, weight(3)|leg_armor(24)|difficulty(10), imodbits_armor],
  548. ["splinted_greaves", "Splinted Greaves", [("splinted_greaves_a",0)], itp_type_foot_armor|itp_attach_armature, 0,
  549. 1353, weight(3.5)|leg_armor(28)|difficulty(12), imodbits_armor],
  550. ["sarranid_boots_d", "Mail Boots", [("sarranid_mail_chausses",0)], itp_type_foot_armor|itp_attach_armature, 0,
  551. 1420 , weight(2.5)|leg_armor(30)|difficulty(12), imodbits_armor],
  552. ["mail_boots", "Mail Boots", [("mail_boots_a",0)], itp_type_foot_armor|itp_attach_armature, 0,
  553. 1750, weight(3)|leg_armor(31)|difficulty(14), imodbits_armor],
  554. ["iron_greaves", "Iron Greaves", [("iron_greaves_a",0)], itp_type_foot_armor|itp_attach_armature, 0,
  555. 2470, weight(3.5)|leg_armor(33)|difficulty(15), imodbits_armor],
  556. ["plate_boots", "Plate Boots", [("plate_boots",0)], itp_type_foot_armor|itp_attach_armature, 0,
  557. 2864, weight(3.5)|leg_armor(34)|difficulty(15), imodbits_plate],
  558. ["black_greaves", "Black Greaves", [("black_greaves",0)], itp_type_foot_armor|itp_attach_armature, 0,
  559. 5661, weight(3.5)|leg_armor(35)|difficulty(15), imodbits_plate],
  560.  
  561. ["leather_gloves", "Leather Gloves", [("leather_gloves_L",0)], itp_type_hand_armor, 0,
  562. 545, weight(0.25)|body_armor(2)|difficulty(0), imodbits_cloth],
  563. ["bishop_gloves", "Bishop's Gloves", [("pw_bishop_glove_L",0)], itp_type_hand_armor, 0,
  564. 1293, weight(0.5)|body_armor(3)|difficulty(8), imodbits_cloth],
  565. ["mail_mittens", "Mail Mittens", [("mail_mittens_L",0)], itp_type_hand_armor, 0,
  566. 1350, weight(0.5)|body_armor(4)|difficulty(9), imodbits_armor],
  567. ["lamellar_gauntlets", "Lamellar Gauntlets", [("scale_gauntlets_a_L",0)], itp_type_hand_armor, 0,
  568. 2320, weight(0.75)|body_armor(5)|difficulty(11), imodbits_armor],
  569. ["scale_gauntlets", "Scale Gauntlets", [("scale_gauntlets_b_L",0)], itp_type_hand_armor, 0,
  570. 2503, weight(0.75)|body_armor(6)|difficulty(12), imodbits_armor],
  571. ["gauntlets", "Gauntlets", [("gauntlets_L",0)], itp_type_hand_armor, 0,
  572. 3042, weight(1.0)|body_armor(7)|difficulty(14), imodbits_armor],
  573.  
  574. ["club", "Club", [("club",0)], itp_type_one_handed_wpn|itp_primary|itp_wooden_parry|itp_wooden_attack, itc_scimitar|itcf_carry_mace_left_hip,
  575. 35, weight(2.5)|difficulty(5)|spd_rtng(92)|weapon_length(70)|swing_damage(10, blunt)|thrust_damage(0, pierce), imodbits_none],
  576. ["spiked_club", "Spiked Club", [("spiked_club",0)], itp_type_one_handed_wpn|itp_primary|itp_wooden_parry, itc_longsword|itcf_carry_mace_left_hip,
  577. 383, weight(3.0)|difficulty(10)|spd_rtng(90)|weapon_length(80)|swing_damage(15, pierce)|thrust_damage(17, pierce), imodbits_mace],
  578. ["old_knife", "Old Knife", [("peasant_knife",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_left,
  579. 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)]],
  580. ["crude_spear", "Crude Spear", [("spear_g_1-9m",0)], itp_type_polearm|itp_primary|itp_wooden_parry, itc_staff|itcf_carry_spear,
  581. 374, weight(2.0)|difficulty(6)|spd_rtng(92)|weapon_length(120)|swing_damage(6, cut)|thrust_damage(18, pierce), imodbits_polearm],
  582. ["blunt_falchion", "Blunt Falchion", [("falchion",0)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
  583. 217, weight(1.0)|difficulty(5)|spd_rtng(91)|weapon_length(72)|swing_damage(12, cut)|thrust_damage(0, pierce), imodbits_sword],
  584. ["chipped_falchion", "Chipped Falchion", [("falchion",0)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
  585. 314, weight(2.5)|difficulty(5)|spd_rtng(95)|weapon_length(72)|swing_damage(16, cut)|thrust_damage(0, pierce), imodbits_sword],
  586. ["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,
  587. 321, weight(1.5)|difficulty(9)|spd_rtng(97)|weapon_length(95)|swing_damage(15, cut)|thrust_damage(12, pierce), imodbits_sword],
  588. ["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,
  589. 355, weight(1.25)|difficulty(9)|spd_rtng(98)|weapon_length(91)|swing_damage(16, cut)|thrust_damage(13, pierce), imodbits_sword],
  590. ["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,
  591. 364, weight(4.5)|difficulty(8)|spd_rtng(87)|weapon_length(156)|swing_damage(0, cut)|thrust_damage(16, pierce), imodbits_polearm],
  592. ["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,
  593. 103, weight(2.0)|difficulty(8)|spd_rtng(94)|weapon_length(100)|swing_damage(6, cut)|thrust_damage(6, cut), imodbits_none],
  594. ["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,
  595. 174, weight(3.0)|difficulty(14)|spd_rtng(90)|weapon_length(117)|swing_damage(6, cut)|thrust_damage(6, cut), imodbits_none],
  596.  
  597. ["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,
  598. 322, weight(3.0)|difficulty(7)|spd_rtng(100)|weapon_length(70)|swing_damage(26, blunt)|thrust_damage(0, pierce), imodbits_mace],
  599. ["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,
  600. 380, weight(3.5)|difficulty(8)|spd_rtng(97)|weapon_length(70)|swing_damage(30, blunt)|thrust_damage(0, pierce), imodbits_pick],
  601. ["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,
  602. 198, weight(2.5)|difficulty(5)|spd_rtng(98)|weapon_length(70)|swing_damage(21, blunt)|thrust_damage(0, pierce), imodbits_mace],
  603. ["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,
  604. 312, weight(2.5)|difficulty(5)|spd_rtng(98)|weapon_length(70)|swing_damage(24, blunt)|thrust_damage(0, pierce), imodbits_mace],
  605. ["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,
  606. 600, weight(3.5)|difficulty(12)|spd_rtng(95)|weapon_length(117)|swing_damage(24, blunt)|thrust_damage(20, pierce), imodbits_mace],
  607. ["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,
  608. 764, weight(3.0)|difficulty(14)|spd_rtng(96)|weapon_length(126)|swing_damage(23, pierce)|thrust_damage(20, blunt), imodbits_mace],
  609. ["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,
  610. 810, weight(4.0)|difficulty(14)|spd_rtng(94)|weapon_length(138)|swing_damage(28, blunt)|thrust_damage(26, blunt), imodbits_mace],
  611. ["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,
  612. 408, weight(1.0)|difficulty(8)|spd_rtng(98)|weapon_length(68)|swing_damage(24, pierce)|thrust_damage(0, pierce), imodbits_pick],
  613. ["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,
  614. 680, weight(1.5)|difficulty(9)|spd_rtng(97)|weapon_length(68)|swing_damage(31, pierce)|thrust_damage(0, pierce), imodbits_pick],
  615. ["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,
  616. 585, weight(1.0)|difficulty(8)|spd_rtng(98)|weapon_length(75)|swing_damage(27, pierce)|thrust_damage(0, pierce), imodbits_axe],
  617. ["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,
  618. 543, weight(2.0)|difficulty(9)|spd_rtng(95)|weapon_length(70)|swing_damage(31, blunt)|thrust_damage(0, pierce), imodbits_mace],
  619. ["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,
  620. 1305, weight(4.5)|difficulty(15)|spd_rtng(95)|weapon_length(85)|swing_damage(38, pierce)|thrust_damage(0, pierce), imodbits_mace],
  621. ["falchion", "Falchion", [("falchion_new",0)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
  622. 335, weight(2.5)|difficulty(5)|spd_rtng(96)|weapon_length(73)|swing_damage(30, cut)|thrust_damage(0, pierce), imodbits_sword],
  623. ["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,
  624. 654, weight(1.25)|difficulty(9)|spd_rtng(98)|weapon_length(99)|swing_damage(25, cut)|thrust_damage(14, pierce), imodbits_sword],
  625. ["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,
  626. 663, weight(1.5)|difficulty(9)|spd_rtng(99)|weapon_length(95)|swing_damage(27, cut)|thrust_damage(22, pierce), imodbits_sword_high],
  627. ["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,
  628. 558, weight(1.25)|difficulty(9)|spd_rtng(103)|weapon_length(82)|swing_damage(26, cut)|thrust_damage(24, pierce), imodbits_sword_high],
  629. ["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,
  630. 880, weight(1.5)|difficulty(10)|spd_rtng(98)|weapon_length(102)|swing_damage(27, cut)|thrust_damage(27, pierce), imodbits_sword_high],
  631. ["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,
  632. 950, weight(1.5)|difficulty(12)|spd_rtng(97)|weapon_length(102)|swing_damage(33, cut)|thrust_damage(25, pierce), imodbits_sword],
  633. ["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,
  634. 647, weight(1.5)|difficulty(9)|spd_rtng(99)|weapon_length(95)|swing_damage(28, cut)|thrust_damage(20, pierce), imodbits_sword_high],
  635. ["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,
  636. 572, weight(1.25)|difficulty(9)|spd_rtng(102)|weapon_length(82)|swing_damage(27, cut)|thrust_damage(22, pierce), imodbits_sword_high],
  637. ["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,
  638. 842, weight(1.5)|difficulty(10)|spd_rtng(97)|weapon_length(101)|swing_damage(29, cut)|thrust_damage(19, pierce), imodbits_sword],
  639. ["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,
  640. 612, weight(1.5)|difficulty(9)|spd_rtng(99)|weapon_length(100)|swing_damage(26, cut)|thrust_damage(19, pierce), imodbits_sword_high],
  641. ["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,
  642. 832, weight(1.75)|difficulty(11)|spd_rtng(99)|weapon_length(100)|swing_damage(28, cut)|thrust_damage(19, pierce), imodbits_sword_high],
  643. ["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,
  644. 945, weight(2.0)|difficulty(12)|spd_rtng(97)|weapon_length(106)|swing_damage(28, cut)|thrust_damage(19, pierce), imodbits_sword_high],
  645. ["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,
  646. 893, weight(1.5)|difficulty(10)|spd_rtng(98)|weapon_length(100)|swing_damage(30, cut)|thrust_damage(20, pierce), imodbits_sword_high],
  647. ["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,
  648. 750, weight(1.5)|difficulty(9)|spd_rtng(101)|weapon_length(97)|swing_damage(30, cut)|thrust_damage(0, pierce), imodbits_sword_high],
  649. ["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,
  650. 890, weight(1.5)|difficulty(10)|spd_rtng(100)|weapon_length(100)|swing_damage(32, cut)|thrust_damage(0, pierce), imodbits_sword_high],
  651. ["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,
  652. 580, weight(1.5)|difficulty(9)|spd_rtng(101)|weapon_length(88)|swing_damage(31, cut), imodbits_sword_high],
  653. ["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,
  654. 734, weight(1.75)|difficulty(12)|spd_rtng(98)|weapon_length(88)|swing_damage(34, cut), imodbits_sword_high],
  655. ["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,
  656. 2523, weight(2.75)|difficulty(15)|spd_rtng(96)|weapon_length(113)|swing_damage(40, cut)|thrust_damage(0, pierce), imodbits_sword_high],
  657. ["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,
  658. 2440, weight(2.75)|difficulty(15)|spd_rtng(93)|weapon_length(120)|swing_damage(45, cut)|thrust_damage(0, cut), imodbits_sword_high],
  659. ["military_cleaver_b", "Soldier's Cleaver", [("military_cleaver_b",0)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
  660. 693, weight(1.5)|difficulty(10)|spd_rtng(95)|weapon_length(91)|swing_damage(31, cut)|thrust_damage(0, pierce), imodbits_sword_high],
  661. ["military_cleaver_c", "Military Cleaver", [("military_cleaver_c",0)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
  662. 763, weight(1.5)|difficulty(12)|spd_rtng(95)|weapon_length(91)|swing_damage(35, cut)|thrust_damage(0, pierce), imodbits_sword_high],
  663. ["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,
  664. 1294, weight(2.0)|difficulty(15)|spd_rtng(98)|weapon_length(98)|swing_damage(35, cut)|thrust_damage(26, pierce), imodbits_sword_high],
  665. ["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,
  666. 1526, weight(2.25)|difficulty(15)|spd_rtng(97)|weapon_length(105)|swing_damage(37, cut)|thrust_damage(27, pierce), imodbits_sword_high],
  667. ["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,
  668. 1970, weight(2.75)|difficulty(15)|spd_rtng(97)|weapon_length(109)|swing_damage(40, cut)|thrust_damage(28, pierce), imodbits_sword_high ],
  669. ["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,
  670. 4134, weight(2.75)|difficulty(15)|spd_rtng(96)|weapon_length(119)|swing_damage(42, cut)|thrust_damage(29, pierce), imodbits_sword_high],
  671. ["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,
  672. 490, weight(1.5)|difficulty(12)|spd_rtng(94)|weapon_length(71)|swing_damage(31, cut)|thrust_damage(0, pierce), imodbits_axe],
  673. ["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,
  674. 521, weight(1.5)|difficulty(12)|spd_rtng(95)|weapon_length(73)|swing_damage(29, cut)|thrust_damage(0, pierce), imodbits_axe],
  675. ["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,
  676. 830, weight(1.75)|difficulty(14)|spd_rtng(97)|weapon_length(76)|swing_damage(36, cut)|thrust_damage(0, pierce), imodbits_axe],
  677. ["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,
  678. 750, weight(2.0)|difficulty(14)|spd_rtng(97)|weapon_length(73)|swing_damage(37, cut)|thrust_damage(0, pierce), imodbits_axe],
  679. ["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,
  680. 1150, weight(1.75)|difficulty(12)|spd_rtng(97)|weapon_length(71)|swing_damage(35, cut)|thrust_damage(0, pierce), imodbits_axe],
  681. ["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,
  682. 1360, weight(1.75)|difficulty(12)|spd_rtng(97)|weapon_length(69)|swing_damage(38, cut)|thrust_damage(0, pierce), imodbits_axe],
  683. ["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,
  684. 1490, weight(4.5)|difficulty(15)|spd_rtng(96)|weapon_length(89)|swing_damage(38, cut)|thrust_damage(0, pierce), imodbits_axe],
  685. ["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,
  686. 2025, weight(4.5)|difficulty(15)|spd_rtng(96)|weapon_length(90)|swing_damage(44, cut)|thrust_damage(0, pierce), imodbits_axe],
  687. ["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,
  688. 2328, weight(5.0)|difficulty(15)|spd_rtng(92)|weapon_length(99)|swing_damage(45, cut)|thrust_damage(0, pierce), imodbits_axe],
  689. ["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,
  690. 2901, weight(5.5)|difficulty(15)|spd_rtng(91)|weapon_length(101)|swing_damage(47, cut)|thrust_damage(0, pierce), imodbits_axe],
  691. ["shortened_military_scythe", "Shortened Military Scythe", [("two_handed_battle_scythe_a",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary, itc_nodachi|itcf_carry_sword_back,
  692. 1640, weight(2.0)|difficulty(14)|spd_rtng(90)|weapon_length(114)|swing_damage(38, cut)|thrust_damage(0, pierce), imodbits_sword_high],
  693. ["sarranid_two_handed_axe_a", "Two Handed Iron Axe", [("two_handed_battle_axe_g",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary|itp_bonus_against_shield|itp_unbalanced, itc_nodachi|itcf_carry_axe_back,
  694. 2350, weight(5.0)|difficulty(15)|spd_rtng(89)|weapon_length(95)|swing_damage(45, cut)|thrust_damage(0, pierce), imodbits_axe],
  695. ["sarranid_two_handed_axe_b", "Two Handed Iron Axe", [("two_handed_battle_axe_h",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary|itp_bonus_against_shield|itp_unbalanced, itc_nodachi|itcf_carry_axe_back,
  696. 2870, weight(5.5)|difficulty(15)|spd_rtng(92)|weapon_length(89)|swing_damage(47, cut)|thrust_damage(0, pierce), imodbits_axe],
  697. ["long_axe_a", "Long Axe", [("long_axe_a",0)], itp_type_polearm|itp_two_handed|itp_primary|itp_bonus_against_shield|itp_wooden_parry, itc_staff|itcf_carry_axe_back,
  698. 3120, weight(4.5)|difficulty(15)|spd_rtng(91)|weapon_length(113)|swing_damage(46, cut)|thrust_damage(15, blunt), imodbits_axe],
  699. ["glaive", "Glaive", [("glaive_b",0)], itp_type_polearm|itp_cant_use_on_horseback|itp_primary|itp_two_handed|itp_wooden_parry, itc_staff|itcf_carry_spear,
  700. 1752, weight(2.5)|difficulty(14)|spd_rtng(90)|weapon_length(157)|swing_damage(39, cut)|thrust_damage(21, pierce), imodbits_polearm],
  701. ["staff", "Staff", [("wooden_staff",0)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry|itp_wooden_attack, itc_staff|itcf_carry_sword_back,
  702. 160, weight(1.5)|difficulty(8)|spd_rtng(98)|weapon_length(128)|swing_damage(15, blunt)|thrust_damage(12, blunt), imodbits_polearm],
  703. ["quarter_staff", "Quarter Staff", [("quarter_staff",0)], itp_type_polearm|itp_offset_lance|itp_primary|itp_wooden_parry|itp_wooden_attack, itc_staff|itcf_carry_sword_back,
  704. 220, weight(2.0)|difficulty(8)|spd_rtng(97)|weapon_length(137)|swing_damage(18, blunt)|thrust_damage(13, blunt), imodbits_polearm],
  705. ["iron_staff", "Iron Staff", [("iron_staff",0)], itp_type_polearm|itp_offset_lance|itp_primary, itc_staff|itcf_carry_sword_back,
  706. 575, weight(4.0)|difficulty(12)|spd_rtng(93)|weapon_length(128)|swing_damage(25, blunt)|thrust_damage(26, blunt), imodbits_polearm],
  707. ["shortened_spear", "Shortened Spear", [("spear_g_1-9m",0)], itp_type_polearm|itp_offset_lance|itp_primary|itp_wooden_parry, itc_staff|itcf_carry_spear,
  708. 353, weight(2.0)|difficulty(9)|spd_rtng(102)|weapon_length(120)|swing_damage(18, blunt)|thrust_damage(24, pierce), imodbits_polearm],
  709. ["spear", "Spear", [("spear_h_2-15m",0)], itp_type_polearm|itp_offset_lance|itp_primary|itp_wooden_parry, itc_staff|itcf_carry_spear,
  710. 485, weight(2.25)|difficulty(9)|spd_rtng(98)|weapon_length(135)|swing_damage(20, blunt)|thrust_damage(26, pierce), imodbits_polearm],
  711. ["bamboo_spear", "Bamboo Spear", [("arabian_spear_a_3m",0)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_staff|itcf_carry_spear,
  712. 580, weight(3.0)|difficulty(14)|spd_rtng(88)|weapon_length(200)|swing_damage(15, blunt)|thrust_damage(20, pierce), imodbits_polearm],
  713. ["war_spear", "War Spear", [("spear_i_2-3m",0)], itp_type_polearm|itp_offset_lance|itp_primary|itp_wooden_parry, itc_staff|itcf_carry_spear,
  714. 640, weight(2.5)|difficulty(10)|spd_rtng(95)|weapon_length(150)|swing_damage(20, blunt)|thrust_damage(27, pierce), imodbits_polearm],
  715. ["light_lance", "Light Lance", [("spear_b_2-75m",0)], itp_couchable|itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_spear|itcf_carry_spear,
  716. 580, weight(2.5)|difficulty(12)|spd_rtng(85)|weapon_length(175)|swing_damage(16, blunt)|thrust_damage(27, pierce), imodbits_polearm],
  717. ["lance", "Lance", [("spear_d_2-8m",0)], itp_couchable|itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_spear|itcf_carry_spear,
  718. 670, weight(3.0)|difficulty(14)|spd_rtng(80)|weapon_length(180)|swing_damage(16, blunt)|thrust_damage(26, pierce), imodbits_polearm],
  719. ["heavy_lance", "Heavy Lance", [("spear_f_2-9m",0)], itp_couchable|itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_spear|itcf_carry_spear,
  720. 960, weight(3.5)|difficulty(14)|spd_rtng(75)|weapon_length(190)|swing_damage(16, blunt)|thrust_damage(26, pierce), imodbits_polearm],
  721. ["great_lance", "Great Lance", [("pw_great_lance",0)], itp_couchable|itp_type_polearm|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itcf_carry_spear,
  722. 1410, weight(5.0)|difficulty(14)|spd_rtng(70)|weapon_length(227)|swing_damage(0, cut)|thrust_damage(21, pierce), imodbits_polearm],
  723. ["jousting_lance", "Jousting Lance", [("pw_jousting_lance",0)], itp_couchable|itp_type_polearm|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itcf_carry_spear,
  724. 1258, weight(5.0)|difficulty(14)|spd_rtng(70)|weapon_length(226)|swing_damage(0, cut)|thrust_damage(15, blunt), imodbits_polearm],
  725. ["awlpike", "Awlpike", [("awl_pike_b",0)], itp_type_polearm|itp_cant_use_on_horseback|itp_primary|itp_penalty_with_shield|itp_wooden_parry|itp_is_pike, itc_spear|itcf_carry_spear,
  726. 745, weight(2.25)|difficulty(14)|spd_rtng(92)|weapon_length(165)|swing_damage(20, blunt)|thrust_damage(33, pierce), imodbits_polearm],
  727. ["awlpike_long", "Long Awlpike", [("awl_pike_a",0)], itp_type_polearm|itp_cant_use_on_horseback|itp_primary|itp_penalty_with_shield|itp_wooden_parry|itp_is_pike, itc_spear|itcf_carry_spear,
  728. 1085, weight(2.5)|difficulty(15)|spd_rtng(89)|weapon_length(185)|swing_damage(20, blunt)|thrust_damage(32, pierce), imodbits_polearm],
  729. ["pike", "Pike", [("spear_a_3m",0)], itp_type_polearm|itp_cant_use_on_horseback|itp_primary|itp_penalty_with_shield|itp_wooden_parry|itp_two_handed|itp_is_pike, itc_spear|itcf_carry_spear,
  730. 1250, weight(3.0)|difficulty(15)|spd_rtng(81)|weapon_length(245)|swing_damage(16, blunt)|thrust_damage(26, pierce), imodbits_polearm],
  731. ["bec_de_corbin_a", "War Hammer", [("bec_de_corbin_a",0)], itp_type_polearm|itp_cant_use_on_horseback|itp_primary|itp_penalty_with_shield|itp_wooden_parry|itp_two_handed, itc_staff|itcf_carry_spear,
  732. 1350, weight(3.0)|difficulty(15)|spd_rtng(87)|weapon_length(120)|swing_damage(28, blunt)|thrust_damage(30, pierce), imodbits_polearm],
  733. ["bishop_crosier", "Bishop's Crosier", [("pw_bishop_crosier", 0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary, itcf_thrust_onehanded|itcf_carry_bow_back,
  734. 15238, weight(4.0)|difficulty(10)|spd_rtng(70)|weapon_length(125)|swing_damage(0, blunt)|thrust_damage(0, cut), imodbits_polearm],
  735.  
  736. ["crude_bow", "Crude Bow", [("hunting_bow",0),("hunting_bow_carry",ixmesh_carry)], itp_type_bow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_bow|itcf_carry_bow_back,
  737. 260, weight(1)|difficulty(1)|weapon_length(170)|spd_rtng(82)|shoot_speed(42)|thrust_damage(9, pierce), imodbits_bow],
  738. ["bent_arrows", "Bent Arrows", [("arrow",0),("flying_missile",ixmesh_flying_ammo),("quiver",ixmesh_carry)], itp_type_arrows|itp_default_ammo, itcf_carry_quiver_back,
  739. 61, weight(3)|weapon_length(95)|thrust_damage(0, pierce)|max_ammo(10), imodbits_missile],
  740. ["flimsy_crossbow", "Flimsy Crossbow", [("light_crossbow",0)], itp_type_crossbow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_crossbow|itcf_carry_crossbow_back,
  741. 284, weight(3)|difficulty(9)|weapon_length(85)|spd_rtng(35)|shoot_speed(57)|thrust_damage(18, pierce)|max_ammo(1), imodbits_crossbow],
  742. ["crude_bolts","Crude Bolts", [("bolt",0),("flying_missile",ixmesh_flying_ammo),("bolt_bag",ixmesh_carry)], itp_type_bolts, itcf_carry_quiver_right_vertical,
  743. 47, weight(2.25)|weapon_length(55)|max_ammo(8), imodbits_missile],
  744.  
  745. ["hunting_bow", "Hunting Bow", [("hunting_bow", 0), ("hunting_bow_carry",ixmesh_carry)], itp_type_bow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_bow|itcf_carry_bow_back,
  746. 260, weight(1)|difficulty(1)|weapon_length(170)|spd_rtng(100)|shoot_speed(52)|thrust_damage(15, pierce), imodbits_bow],
  747. ["short_bow", "Short Bow", [("short_bow",0),("short_bow_carry",ixmesh_carry)], itp_type_bow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_bow|itcf_carry_bow_back,
  748. 304, weight(1)|difficulty(1)|weapon_length(145)|spd_rtng(97)|shoot_speed(55)|thrust_damage(18, pierce), imodbits_bow],
  749. ["nomad_bow", "Nomad Bow", [("nomad_bow",0),("nomad_bow_case",ixmesh_carry)], itp_type_bow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_bow|itcf_carry_bowcase_left|itcf_show_holster_when_drawn,
  750. 414, weight(1.25)|difficulty(2)|weapon_length(95)|spd_rtng(94)|shoot_speed(56)|thrust_damage(20, pierce), imodbits_bow],
  751. ["long_bow", "Long Bow", [("long_bow",0),("long_bow_carry",ixmesh_carry)], itp_type_bow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_bow|itcf_carry_bow_back,
  752. 545, weight(1.75)|difficulty(3)|weapon_length(250)|spd_rtng(86)|shoot_speed(56)|thrust_damage(22, pierce), imodbits_bow],
  753. ["khergit_bow", "Khergit Bow", [("khergit_bow",0),("khergit_bow_case",ixmesh_carry)], itp_type_bow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_bow|itcf_carry_bowcase_left|itcf_show_holster_when_drawn,
  754. 569, weight(1.25)|difficulty(3)|weapon_length(110)|spd_rtng(90)|shoot_speed(57)|thrust_damage(21, pierce), imodbits_bow],
  755. ["strong_bow", "Strong Bow", [("strong_bow",0),("strong_bow_case",ixmesh_carry)], itp_type_bow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_bow|itcf_carry_bowcase_left|itcf_show_holster_when_drawn,
  756. 837, weight(1.25)|difficulty(3)|weapon_length(110)|spd_rtng(88)|shoot_speed(58)|thrust_damage(23, pierce), imodbits_bow],
  757. ["war_bow", "War Bow", [("war_bow",0),("war_bow_carry",ixmesh_carry)], itp_type_bow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_bow|itcf_carry_bow_back,
  758. 1328, weight(1.5)|difficulty(4)|weapon_length(205)|spd_rtng(85)|shoot_speed(59)|thrust_damage(25, pierce), imodbits_bow],
  759. ["arrows", "Arrows", [("arrow_b", 0), ("flying_missile", ixmesh_flying_ammo), ("quiver", ixmesh_carry)], itp_type_arrows|itp_default_ammo, itcf_carry_quiver_back,
  760. 72, weight(3)|weapon_length(95)|thrust_damage(1, pierce)|max_ammo(30), imodbits_missile],
  761. ["barbed_arrows", "Barbed Arrows", [("barbed_arrow",0),("flying_missile",ixmesh_flying_ammo),("quiver_d", ixmesh_carry)], itp_type_arrows, itcf_carry_quiver_back_right,
  762. 124, weight(3)|weapon_length(95)|thrust_damage(2,pierce)|max_ammo(30), imodbits_missile],
  763. ["khergit_arrows", "Broadhead Arrows", [("arrow",0),("flying_missile",ixmesh_flying_ammo),("quiver_b", ixmesh_carry)], itp_type_arrows, itcf_carry_quiver_back_right,
  764. 210, weight(3.5)|weapon_length(95)|thrust_damage(3,pierce)|max_ammo(30), imodbits_missile],
  765. ["bodkin_arrows", "Bodkin Arrows", [("piercing_arrow",0),("flying_missile",ixmesh_flying_ammo),("quiver_c", ixmesh_carry)], itp_type_arrows, itcf_carry_quiver_back_right,
  766. 220, weight(3)|weapon_length(91)|thrust_damage(3,pierce)|max_ammo(30), imodbits_missile],
  767. ["hunting_crossbow", "Hunting Crossbow", [("crossbow_a",0)], itp_type_crossbow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_crossbow|itcf_carry_crossbow_back,
  768. 562, weight(2.25)|difficulty(6)|weapon_length(99)|spd_rtng(47)|shoot_speed(50)|thrust_damage(37, pierce)|max_ammo(1), imodbits_crossbow],
  769. ["light_crossbow", "Light Crossbow", [("crossbow_b",0)], itp_type_crossbow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_crossbow|itcf_carry_crossbow_back,
  770. 778, weight(2.5)|difficulty(8)|weapon_length(100)|spd_rtng(45)|shoot_speed(59)|thrust_damage(44, pierce)|max_ammo(1), imodbits_crossbow],
  771. ["crossbow", "Crossbow", [("crossbow_a",0)], itp_type_crossbow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_crossbow|itcf_carry_crossbow_back,
  772. 1182, weight(3)|difficulty(10)|weapon_length(100)|spd_rtng(42)|shoot_speed(66)|thrust_damage(49, pierce)|max_ammo(1), imodbits_crossbow],
  773. ["heavy_crossbow", "Heavy Crossbow", [("crossbow_c",0)], itp_type_crossbow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_crossbow|itcf_carry_crossbow_back,
  774. 1749, weight(3.5)|difficulty(12)|weapon_length(101)|spd_rtng(37)|shoot_speed(68)|thrust_damage(56, pierce)|max_ammo(1), imodbits_crossbow],
  775. ["sniper_crossbow", "Siege Crossbow", [("crossbow_c",0)], itp_type_crossbow|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_shoot_crossbow|itcf_carry_crossbow_back,
  776. 3483, weight(3.75)|difficulty(14)|weapon_length(105)|spd_rtng(32)|shoot_speed(70)|thrust_damage(63, pierce)|max_ammo(1), imodbits_crossbow],
  777. ["bolts", "Bolts", [("bolt",0),("flying_missile",ixmesh_flying_ammo),("bolt_bag_b", ixmesh_carry)], itp_type_bolts|itp_default_ammo|itp_can_penetrate_shield, itcf_carry_quiver_right_vertical,
  778. 95, weight(2.25)|weapon_length(63)|thrust_damage(1,pierce)|max_ammo(29), imodbits_missile],
  779. ["steel_bolts", "Steel Bolts", [("bolt",0),("flying_missile",ixmesh_flying_ammo),("bolt_bag_c", ixmesh_carry)], itp_type_bolts|itp_can_penetrate_shield, itcf_carry_quiver_right_vertical,
  780. 190, weight(2.5)|weapon_length(63)|thrust_damage(2,pierce)|max_ammo(29), imodbits_missile],
  781.  
  782. ["old_shield", "Old Shield", [("shield_heater_c",0)], itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  783. 157, weight(3.5)|hit_points(210)|body_armor(2)|spd_rtng(70)|shield_width(50), imodbits_shield],
  784. ["practice_shield", "Practice Shield", [("tableau_shield_round_5",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  785. 76, weight(4)|hit_points(100)|body_armor(0)|spd_rtng(90)|shield_width(50), imodbits_shield, init_heraldic_item("tableau_round_shield_5")],
  786. ["tab_shield_round_b", "Plain Round Shield", [("tableau_shield_round_3",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  787. 265, weight(3)|hit_points(260)|body_armor(8)|spd_rtng(90)|shield_width(50), imodbits_shield, init_heraldic_item("tableau_round_shield_3")],
  788. ["tab_shield_round_c", "Round Shield", [("tableau_shield_round_2",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  789. 305, weight(3.5)|hit_points(310)|body_armor(12)|spd_rtng(87)|shield_width(50), imodbits_shield, init_heraldic_item("tableau_round_shield_2")],
  790. ["tab_shield_round_d", "Heavy Round Shield", [("tableau_shield_round_1",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  791. 410, weight(4)|hit_points(350)|body_armor(15)|spd_rtng(84)|shield_width(50), imodbits_shield, init_heraldic_item("tableau_round_shield_1")],
  792. ["tab_shield_round_e", "Huscarl's Round Shield", [("tableau_shield_round_4",0)], itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_round_shield,
  793. 630 , weight(5)|hit_points(380)|body_armor(16)|spd_rtng(81)|shield_width(50), imodbits_shield, init_heraldic_item("tableau_round_shield_4")],
  794. ["tab_shield_kite_b", "Plain Kite Shield", [("tableau_shield_kite_3" ,0)], itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  795. 270, weight(2.5)|hit_points(215)|body_armor(10)|spd_rtng(93)|shield_width(36)|shield_height(70), imodbits_shield, init_heraldic_item("tableau_kite_shield_3")],
  796. ["tab_shield_kite_c", "Kite Shield", [("tableau_shield_kite_2" ,0)], itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  797. 356, weight(3)|hit_points(265)|body_armor(13)|spd_rtng(90)|shield_width(36)|shield_height(70), imodbits_shield, init_heraldic_item("tableau_kite_shield_2")],
  798. ["tab_shield_kite_d", "Heavy Kite Shield", [("tableau_shield_kite_2" ,0)], itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  799. 420, weight(3.5)|hit_points(310)|body_armor(18)|spd_rtng(87)|shield_width(36)|shield_height(70), imodbits_shield, init_heraldic_item("tableau_kite_shield_2")],
  800. ["tab_shield_kite_cav_a", "Horseman's Kite Shield", [("tableau_shield_kite_4" ,0)], itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  801. 405, weight(2)|hit_points(165)|body_armor(14)|spd_rtng(103)|shield_width(30)|shield_height(50), imodbits_shield, init_heraldic_item("tableau_kite_shield_4")],
  802. ["tab_shield_kite_cav_b", "Knightly Kite Shield", [("tableau_shield_kite_4" ,0)], itp_type_shield, itcf_carry_kite_shield,
  803. 760, weight(2.5)|hit_points(225)|body_armor(23)|spd_rtng(100)|shield_width(30)|shield_height(50), imodbits_shield, init_heraldic_item("tableau_kite_shield_4")],
  804. ["tab_shield_heater_b", "Plain Heater Shield", [("tableau_shield_heater_1" ,0)], itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  805. 274, weight(2.5)|hit_points(210)|body_armor(11)|spd_rtng(93)|shield_width(36)|shield_height(70), imodbits_shield, init_heraldic_item("tableau_heater_shield_1")],
  806. ["tab_shield_heater_c", "Heater Shield", [("tableau_shield_heater_1" ,0)], itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  807. 360, weight(3)|hit_points(260)|body_armor(14)|spd_rtng(90)|shield_width(36)|shield_height(70), imodbits_shield, init_heraldic_item("tableau_heater_shield_1")],
  808. ["tab_shield_heater_d", "Heavy Heater Shield", [("tableau_shield_heater_1" ,0)], itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  809. 432, weight(3.5)|hit_points(305)|body_armor(19)|spd_rtng(87)|shield_width(36)|shield_height(70), imodbits_shield, init_heraldic_item("tableau_heater_shield_1")],
  810. ["tab_shield_heater_cav_a", "Horseman's Heater Shield", [("tableau_shield_heater_2" ,0)], itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  811. 429, weight(2)|hit_points(160)|body_armor(16)|spd_rtng(103)|shield_width(30)|shield_height(50), imodbits_shield, init_heraldic_item("tableau_heater_shield_2")],
  812. ["tab_shield_heater_cav_b", "Knightly Heater Shield", [("tableau_shield_heater_2" ,0)], itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  813. 790, weight(2.5)|hit_points(220)|body_armor(23)|spd_rtng(100)|shield_width(30)|shield_height(50), imodbits_shield, init_heraldic_item("tableau_heater_shield_2")],
  814. ["tab_shield_pavise_b", "Plain Board Shield", [("tableau_shield_pavise_2" ,0)], itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  815. 414, weight(4)|hit_points(360)|body_armor(8)|spd_rtng(85)|shield_width(43)|shield_height(100), imodbits_shield, init_heraldic_item("tableau_pavise_shield_2")],
  816. ["tab_shield_pavise_c", "Board Shield", [("tableau_shield_pavise_1" ,0)], itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  817. 610, weight(4.5)|hit_points(430)|body_armor(10)|spd_rtng(81)|shield_width(43)|shield_height(100), imodbits_shield, init_heraldic_item("tableau_pavise_shield_1")],
  818. ["tab_shield_pavise_d", "Heavy Board Shield", [("tableau_shield_pavise_1" ,0)], itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  819. 870, weight(5)|hit_points(550)|body_armor(14)|spd_rtng(78)|shield_width(43)|shield_height(100), imodbits_shield, init_heraldic_item("tableau_pavise_shield_1")],
  820. ["tab_shield_small_round_a", "Plain Cavalry Shield", [("tableau_shield_small_round_3",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  821. 396, weight(2)|hit_points(160)|body_armor(8)|spd_rtng(105)|shield_width(40), imodbits_shield, init_heraldic_item("tableau_small_round_shield_3")],
  822. ["tab_shield_small_round_b", "Round Cavalry Shield", [("tableau_shield_small_round_1",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  823. 595, weight(2.5)|hit_points(200)|body_armor(14)|spd_rtng(103)|shield_width(40), imodbits_shield, init_heraldic_item("tableau_small_round_shield_1")],
  824. ["tab_shield_small_round_c", "Elite Cavalry Shield", [("tableau_shield_small_round_2",0)], itp_type_shield, itcf_carry_round_shield,
  825. 870, weight(3)|hit_points(250)|body_armor(22)|spd_rtng(100)|shield_width(40), imodbits_shield, init_heraldic_item("tableau_small_round_shield_2")],
  826. ["hide_covered_round_shield", "Hide Covered Round Shield", [("shield_round_f",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  827. 140, weight(3.5)|hit_points(260)|body_armor(3)|spd_rtng(100)|shield_width(40), imodbits_shield],
  828. ["hide_covered_kite_shield", "Hide Covered Kite Shield", [("shield_kite_m",0)], itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  829. 327, weight(5.5)|hit_points(600)|body_armor(1)|spd_rtng(76)|shield_width(38)|shield_height(71), imodbits_shield],
  830. ["steel_shield", "Steel Shield", [("shield_dragon", 0)], itp_type_shield, itcf_carry_round_shield,
  831. 2120, weight(4)|hit_points(700)|body_armor(17)|spd_rtng(61)|shield_width(40), imodbits_shield],
  832.  
  833. ["sumpter_horse", "Sumpter Horse", [("sumpter_horse",0)], itp_type_horse, 0,
  834. 504, hit_points(100)|body_armor(14)|difficulty(1)|horse_speed(37)|horse_maneuver(39)|horse_charge(9)|horse_scale(100), imodbits_none],
  835. ["cart_horse", "Cart Horse", [("sumpter_horse",0)], itp_type_horse, 0,
  836. 1520, hit_points(150)|body_armor(10)|difficulty(1)|horse_speed(35)|horse_maneuver(20)|horse_charge(20)|horse_scale(115), imodbits_none],
  837. ["saddle_horse", "Saddle Horse", [("saddle_horse",0)], itp_type_horse, 0,
  838. 1208, hit_points(100)|body_armor(8)|difficulty(1)|horse_speed(43)|horse_maneuver(44)|horse_charge(10)|horse_scale(104),imodbits_none],
  839. ["steppe_horse", "Steppe Horse", [("steppe_horse",0)], itp_type_horse, 0,
  840. 1455, hit_points(120)|body_armor(10)|difficulty(2)|horse_speed(40)|horse_maneuver(51)|horse_charge(8)|horse_scale(98), imodbits_none],
  841. ["arabian_horse_a", "Desert Horse", [("arabian_horse_a",0)], itp_type_horse, 0,
  842. 1760, hit_points(110)|body_armor(10)|difficulty(2)|horse_speed(42)|horse_maneuver(50)|horse_charge(12)|horse_scale(100), imodbits_none],
  843. ["arabian_horse_b", "Silver Horse", [("arabian_horse_b",0)], itp_type_horse, 0,
  844. 2090, hit_points(120)|body_armor(10)|difficulty(3)|horse_speed(43)|horse_maneuver(54)|horse_charge(16)|horse_scale(100), imodbits_none],
  845. ["courser", "Courser", [("courser",0)], itp_type_horse, 0,
  846. 3670, hit_points(110)|body_armor(12)|difficulty(3)|horse_speed(50)|horse_maneuver(44)|horse_charge(12)|horse_scale(106), imodbits_none],
  847. ["hunter", "Hunter", [("hunting_horse",0)], itp_type_horse, 0,
  848. 4303, hit_points(160)|body_armor(18)|difficulty(3)|horse_speed(46)|horse_maneuver(44)|horse_charge(24)|horse_scale(108), imodbits_none],
  849. ["warhorse", "War Horse", [("warhorse_chain",0)], itp_type_horse, 0,
  850. 5400, hit_points(165)|body_armor(40)|difficulty(4)|horse_speed(44)|horse_maneuver(41)|horse_charge(28)|horse_scale(110), imodbits_none],
  851. ["warhorse_steppe","Steppe War Horse", [("warhorse_steppe",0)], itp_type_horse, 0,
  852. 5670, hit_points(150)|body_armor(40)|difficulty(4)|horse_speed(40)|horse_maneuver(50)|horse_charge(28)|horse_scale(112), imodbits_none],
  853. ["warhorse_sarranid", "Barded War Horse", [("warhorse_sarranid",0)], itp_type_horse, 0,
  854. 8711, hit_points(165)|body_armor(58)|difficulty(4)|horse_speed(43)|horse_maneuver(44)|horse_charge(32)|horse_scale(112), imodbits_none],
  855. ["charger", "Charger", [("charger_new",0)], itp_type_horse, 0,
  856. 8640, hit_points(165)|body_armor(58)|difficulty(4)|horse_speed(43)|horse_maneuver(44)|horse_charge(32)|horse_scale(112), imodbits_none],
  857. ["plated_charger", "Plated Charger", [("plated_charger",0)], itp_type_horse, 0,
  858. 10340, hit_points(180)|body_armor(65)|difficulty(4)|horse_speed(40)|horse_maneuver(45)|horse_charge(40)|horse_scale(112), imodbits_none],
  859.  
  860. ["deer", "Deer", [("pw_deer",0)], itp_type_horse, 0,
  861. 1232, hit_points(60)|body_armor(5)|difficulty(11)|horse_speed(55)|horse_maneuver(75)|horse_charge(30)|horse_scale(100), imodbits_none,
  862. itm_herd_animal(child_item="itm_fawn", grow_age=10, max_in_herd=10, attack_reaction=animal_reaction_flee, meat=7, hide=5, wildness=5)],
  863. ["fawn", "Fawn", [("pw_deer",0)], itp_type_horse, 0,
  864. 426, hit_points(25)|body_armor(2)|difficulty(11)|horse_speed(45)|horse_maneuver(70)|horse_charge(5)|horse_scale(60), imodbits_none],
  865. ["stag", "Stag", [("pw_stag",0)], itp_type_horse, 0,
  866. 1232, hit_points(60)|body_armor(5)|difficulty(11)|horse_speed(55)|horse_maneuver(75)|horse_charge(30)|horse_scale(100), imodbits_none,
  867. itm_herd_animal(child_item="itm_fawn_stag", grow_age=10, max_in_herd=10, attack_reaction=animal_reaction_flee, meat=7, hide=5, wildness=5)],
  868. ["fawn_stag", "Fawn", [("pw_deer",0)], itp_type_horse, 0,
  869. 426, hit_points(25)|body_armor(2)|difficulty(11)|horse_speed(45)|horse_maneuver(70)|horse_charge(5)|horse_scale(60), imodbits_none],
  870. ["boar", "Boar", [("pw_boar",0)], itp_type_horse, 0,
  871. 859, hit_points(70)|body_armor(20)|difficulty(11)|horse_speed(40)|horse_maneuver(70)|horse_charge(250)|horse_scale(70), imodbits_none,
  872. itm_herd_animal(child_item="itm_boarlet", grow_age=7, max_in_herd=20, attack_reaction=animal_reaction_charge, meat=8, hide=3, wildness=3)],
  873. ["boarlet", "Boarlet", [("pw_boar",0)], itp_type_horse, 0,
  874. 315, hit_points(30)|body_armor(10)|difficulty(11)|horse_speed(30)|horse_maneuver(65)|horse_charge(10)|horse_scale(40), imodbits_none],
  875. ["cow", "Cow", [("pw_cow",0)], itp_type_horse, 0,
  876. 1718, hit_points(85)|body_armor(15)|difficulty(11)|horse_speed(35)|horse_maneuver(65)|horse_charge(100)|horse_scale(100), imodbits_none,
  877. itm_herd_animal(child_item="itm_calf", grow_age=12, max_in_herd=16, attack_reaction=animal_reaction_flee, meat=15, hide=8, wildness=1)],
  878. ["calf", "Calf", [("pw_cow",0)], itp_type_horse, 0,
  879. 723, hit_points(45)|body_armor(8)|difficulty(11)|horse_speed(37)|horse_maneuver(60)|horse_charge(30)|horse_scale(60), imodbits_none],
  880.  
  881. ["stick", "Stick", [("wooden_stick",0),("pw_stick_carry",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_quiver_back,
  882. 53, weight(3)|spd_rtng(90)|swing_damage(5,blunt)|weapon_length(63), imodbits_none, [itm_class(item_class_wood, 200)]],
  883. ["stick_melee", "Stick", [("wooden_stick",0),("pw_stick_carry",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_quiver_back,
  884. 53, weight(3)|spd_rtng(90)|swing_damage(5,blunt)|weapon_length(63), imodbits_none, [itm_class(item_class_wood, 200)]],
  885. ["branch", "Branch", [("pw_branch_a",0),("pw_branch_b",imodbit_heavy),("pw_branch_c",imodbit_battered)], itp_type_polearm|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_thrust_polearm|itcf_overswing_polearm|itcf_carry_spear,
  886. 124, weight(25)|spd_rtng(30)|weapon_length(250)|swing_damage(20,blunt)|thrust_damage(10,blunt), imodbit_cracked|imodbit_bent, [itm_class(item_class_wood, 1000)]],
  887. ["wood_pole_short", "Short Wooden Pole", [("pw_wood_pole_short",0)], itp_type_polearm|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itc_poleaxe|itcf_carry_spear,
  888. 108, weight(7)|spd_rtng(75)|weapon_length(92)|swing_damage(15,blunt)|thrust_damage(10,blunt), imodbits_none, [itm_class(item_class_wood, 400)]],
  889. ["wood_pole", "Wooden Pole", [("pw_wood_pole",0)], itp_type_polearm|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_thrust_polearm|itcf_overswing_polearm|itc_parry_polearm|itcf_carry_spear,
  890. 221, weight(15)|spd_rtng(70)|weapon_length(150)|swing_damage(20,blunt)|thrust_damage(10,blunt), imodbits_none, [itm_class(item_class_wood, 800)]],
  891. ["wood_block", "Wood Block", [("pw_wood_block_a",0),("pw_wood_block_b",imodbit_heavy),("pw_wood_block_c",imodbit_battered)], itp_type_polearm|itp_two_handed|itp_primary, itcf_thrust_onehanded|itcf_carry_bow_back,
  892. 142, weight(30)|spd_rtng(50)|weapon_length(32)|swing_damage(5,blunt)|thrust_damage(5,blunt), imodbits_none, [itm_class(item_class_wood, 1600)]],
  893. ["board", "Board", [("pw_board",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger|itcf_carry_axe_back,
  894. 210, weight(10)|spd_rtng(60)|weapon_length(50)|swing_damage(10,blunt)|thrust_damage(10,blunt), imodbits_none, [itm_class(item_class_wood, 400)]],
  895. ["iron_ore_small", "Small Iron Ore", [("pw_iron_ore_small",0)], itp_type_polearm|itp_two_handed|itp_primary, itcf_carry_bow_back,
  896. 400, weight(30)|spd_rtng(60)|swing_damage(7,blunt)|thrust_damage(7,blunt)|weapon_length(50), imodbits_none, [itm_class(item_class_iron, 0)]],
  897. ["iron_ore", "Iron Ore", [("pw_iron_ore",0)], itp_type_polearm|itp_two_handed|itp_primary, itcf_carry_bow_back,
  898. 850, weight(60)|spd_rtng(50)|swing_damage(10,blunt)|thrust_damage(10,blunt)|weapon_length(50), imodbits_none, [itm_class(item_class_iron, 0)]],
  899. ["iron_piece", "Iron Piece", [("pw_iron_piece",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger|itcf_carry_bow_back,
  900. 100, weight(5)|spd_rtng(80)|swing_damage(5,blunt)|thrust_damage(5,blunt)|weapon_length(20), imodbits_none, [itm_class(item_class_iron, 325)]],
  901. ["iron_bar_short", "Short Iron Bar", [("pw_iron_bar_short",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger|itcf_carry_bow_back,
  902. 220, weight(10)|spd_rtng(70)|swing_damage(10,blunt)|thrust_damage(10,blunt)|weapon_length(25), imodbits_none, [itm_class(item_class_iron, 750)]],
  903. ["iron_bar", "Iron Bar", [("pw_iron_bar",0)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_bow_back,
  904. 450, weight(20)|spd_rtng(60)|swing_damage(15,blunt)|thrust_damage(10,blunt)|weapon_length(60), imodbits_none, [itm_class(item_class_iron, 1500)]],
  905. ["iron_bar_long", "Long Iron Bar", [("pw_iron_bar_long",0)], itp_type_polearm|itp_two_handed|itp_primary, itc_parry_polearm|itcf_carry_bow_back,
  906. 1000, weight(40)|spd_rtng(50)|swing_damage(20,blunt)|thrust_damage(10,blunt)|weapon_length(100), imodbits_none, [itm_class(item_class_iron, 3000)]],
  907. ["gold_nugget", "Gold Nugget", [("pw_gold_nugget",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger|itcf_carry_pistol_front_left,
  908. 11000, weight(10)|spd_rtng(70)|swing_damage(5,blunt)|thrust_damage(5,blunt)|weapon_length(20), imodbits_none, [itm_class(item_class_precious, 0)]],
  909. ["gold_bar", "Gold Bar", [("pw_gold_bar",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger|itcf_carry_revolver_right,
  910. 70000, weight(30)|spd_rtng(60)|swing_damage(10,blunt)|thrust_damage(10,blunt)|weapon_length(20), imodbits_none, [itm_class(item_class_precious, 0)]],
  911. ["silver_nugget", "Silver Nugget", [("pw_silver_nugget",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger|itcf_carry_pistol_front_left,
  912. 6000, weight(7)|spd_rtng(70)|swing_damage(5,blunt)|thrust_damage(5,blunt)|weapon_length(20), imodbits_none, [itm_class(item_class_precious, 0)]],
  913. ["silver_bar", "Silver Bar", [("pw_silver_bar",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger|itcf_carry_revolver_right,
  914. 40000, weight(15)|spd_rtng(60)|swing_damage(8,blunt)|thrust_damage(8,blunt)|weapon_length(20), imodbits_none, [itm_class(item_class_precious, 0)]],
  915. ["flax_bundle", "Flax Bundle", [("pw_flax_bundle",0)], itp_type_one_handed_wpn|itp_two_handed|itp_primary|itp_no_parry, itcf_carry_bow_back,
  916. 50, weight(4)|spd_rtng(20)|weapon_length(45), imodbits_none, [itm_class(item_class_cloth, 0)]],
  917. ["linen_thread", "Linen Thread", [("pw_linen_thread",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  918. 91, weight(2)|spd_rtng(90)|weapon_length(45), imodbits_none, [itm_class(item_class_cloth, 0)]],
  919. ["linen_cloth", "Linen Cloth", [("pw_linen_cloth",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_axe_back,
  920. 220, weight(5)|spd_rtng(60)|weapon_length(80), imodbits_none, [itm_class(item_class_cloth, 400)]],
  921. ["linen_cloth_small", "Small Linen Cloth", [("pw_linen_cloth_small",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_axe_back,
  922. 55, weight(1)|spd_rtng(70)|weapon_length(60), imodbits_none, [itm_class(item_class_cloth, 100)]],
  923. ["raw_hide", "Raw Hide", [("pw_raw_hide",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itcf_carry_axe_back,
  924. 257, weight(15)|spd_rtng(20)|weapon_length(60), imodbits_none, [itm_class(item_class_leather, 0)]],
  925. ["leather_roll", "Leather Roll", [("pw_leather_roll",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bow_back,
  926. 354, weight(5)|spd_rtng(20)|weapon_length(50)|swing_damage(4,blunt)|thrust_damage(4,blunt), imodbits_none, [itm_class(item_class_leather, 400)]],
  927. ["leather_piece", "Leather Piece", [("pw_leather_piece",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_axe_back,
  928. 87, weight(1)|spd_rtng(20)|weapon_length(50)|swing_damage(2,blunt)|thrust_damage(2,blunt), imodbits_none, [itm_class(item_class_leather, 100)]],
  929. ["saddle", "Saddle", [("pw_saddle",0)], itp_type_polearm|itp_two_handed|itp_primary|itp_no_parry, itcf_carry_axe_back,
  930. 745, weight(30)|weapon_length(100), imodbits_none],
  931. ["horse_armor", "Horse Armor", [("pw_horse_armor",0)], itp_type_polearm|itp_two_handed|itp_primary|itp_no_parry, itcf_carry_axe_back,
  932. 2103, weight(50)|weapon_length(120), imodbits_none],
  933.  
  934. ["hatchet", "Hatchet", [("pw_hatchet",0)], itp_type_one_handed_wpn|itp_primary|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
  935. 40, weight(3)|spd_rtng(75)|weapon_length(50)|swing_damage(10,cut)|thrust_damage(0,pierce), imodbits_none, [itm_class(item_class_wood_cutting)]],
  936. ["small_mining_pick", "Small Mining Pick", [("pw_small_mining_pick",0),("pw_small_mining_pick_inv",ixmesh_inventory)], itp_type_one_handed_wpn|itp_primary|itp_unbalanced|itp_wooden_parry, itc_parry_polearm|itcf_overswing_polearm|itcf_carry_axe_back,
  937. 193, weight(3)|spd_rtng(70)|weapon_length(70)|swing_damage(15,pierce)|thrust_damage(0,pierce), imodbits_none, [itm_class(item_class_mining)]],
  938. ["woodcutter_axe", "Woodcutter's Axe", [("pw_wood_axe",0)], itp_type_two_handed_wpn|itp_two_handed|itp_bonus_against_shield|itp_primary|itp_wooden_parry|itp_unbalanced|itp_cant_use_on_horseback, itc_nodachi|itcf_carry_axe_back,
  939. 245, weight(4)|spd_rtng(80)|weapon_length(72)|swing_damage(20,cut)|thrust_damage(0,pierce), imodbits_none, [itm_class(item_class_wood_cutting)]],
  940. ["mining_pick", "Mining Pick", [("pw_mining_pick",0),("pw_mining_pick_inv",ixmesh_inventory)], itp_type_polearm|itp_two_handed|itp_primary|itp_unbalanced|itp_cant_use_on_horseback, itc_parry_polearm|itcf_overswing_polearm|itcf_carry_axe_back,
  941. 423, weight(5)|spd_rtng(70)|weapon_length(93)|swing_damage(30,pierce)|thrust_damage(0,pierce), imodbits_none, [itm_class(item_class_mining)]],
  942. ["repair_hammer", "Construction Hammer", [("pw_repair_hammer",0)], itp_type_one_handed_wpn|itp_primary|itp_wooden_parry, itc_scimitar|itcf_carry_bow_back,
  943. 634, weight(3)|spd_rtng(92)|weapon_length(65)|swing_damage(5,blunt)|thrust_damage(0,pierce), imodbits_none, [itm_class(item_class_repair)]],
  944. ["lock_pick", "Lock Pick", [("pw_lock_pick",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger,
  945. 1260, weight(0.25)|spd_rtng(100)|weapon_length(23)|swing_damage(1,blunt)|thrust_damage(5,pierce), imodbits_none, [itm_class(item_class_lock_pick)]],
  946. ["admin_lock_pick", "Admin Lock Pick", [("pw_lock_pick",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger,
  947. 0, weight(0.25)|difficulty(30)|spd_rtng(100)|weapon_length(23)|swing_damage(20,blunt)|thrust_damage(25,pierce), imodbits_none, [itm_class(item_class_lock_pick)]],
  948. ["bucket", "Bucket", [("pw_bucket",0),("pw_bucket_ground",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itcf_slashright_onehanded,
  949. 240, weight(5)|spd_rtng(70)|weapon_length(100)|swing_damage(5,blunt), imodbits_none, [(ti_on_weapon_attack, [(store_trigger_param_1, ":agent_id"), (call_script, "script_cf_use_bucket", ":agent_id")])]],
  950. ["water_bucket", "Water Bucket", [("pw_bucket_water",0),("pw_bucket_water_ground",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itcf_slashright_onehanded,
  951. 250, weight(40)|spd_rtng(50)|weapon_length(100)|swing_damage(10,blunt), imodbits_none],
  952. ["fishing_spear", "Fishing Spear", [("pw_fishing_spear",0)], itp_type_polearm|itp_primary|itp_two_handed|itp_cant_use_on_horseback|itp_wooden_parry, itc_spear|itcf_carry_spear,
  953. 340, weight(2.25)|spd_rtng(55)|weapon_length(183)|swing_damage(0, cut)|thrust_damage(10, pierce), imodbits_none,
  954. [(ti_on_weapon_attack, [(position_move_y, pos1, 270), (store_trigger_param_1, ":agent_id"), (call_script, "script_cf_use_fishing_tool", ":agent_id")])]],
  955. ["fishing_net", "Fishing Net", [("pw_fishing_net_b",0),("pw_fishing_net_a",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary|itp_two_handed|itp_cant_use_on_horseback, itcf_slashright_onehanded,
  956. 823, weight(5)|spd_rtng(40)|weapon_length(50)|swing_damage(0, cut)|thrust_damage(0, cut), imodbits_none,
  957. [(ti_on_weapon_attack, [(position_move_y, pos1, -50), (position_move_z, pos1, -200), (store_trigger_param_1, ":agent_id"), (call_script, "script_cf_use_fishing_tool", ":agent_id")])]],
  958. ["blunt_sickle", "Blunt Sickle", [("pw_sickle",0)], itp_type_one_handed_wpn|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_slashright_onehanded|itcf_carry_dagger_front_right,
  959. 65, weight(0.75)|difficulty(0)|spd_rtng(75)|weapon_length(100)|swing_damage(6, cut)|thrust_damage(0, cut), imodbits_none, [itm_class(item_class_grain_harvesting)]],
  960. ["sickle", "Sickle", [("pw_sickle",0)], itp_type_one_handed_wpn|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_slashright_onehanded|itcf_carry_dagger_front_right,
  961. 136, weight(0.5)|difficulty(0)|spd_rtng(80)|weapon_length(100)|swing_damage(10, cut)|thrust_damage(0, cut), imodbits_none, [itm_class(item_class_grain_harvesting)]],
  962. ["scythe", "Scythe", [("pw_scythe",0)], itp_type_polearm|itp_two_handed|itp_primary|itp_no_parry|itp_unbalanced|itp_cant_use_on_horseback, itcf_slashleft_polearm|itcf_carry_spear,
  963. 549, weight(2)|difficulty(0)|spd_rtng(70)|weapon_length(160)|swing_damage(25, cut)|thrust_damage(0, cut), imodbits_polearm, [itm_class(item_class_grain_harvesting)]],
  964. ["kitchen_knife", "Kitchen Knife", [("pw_kitchen_knife",0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  965. 68, weight(0.25)|difficulty(0)|spd_rtng(100)|weapon_length(40)|swing_damage(10, cut)|thrust_damage(6, pierce), imodbits_sword, [itm_class(item_class_knife)]],
  966. ["cleaver", "Butchering Cleaver", [("cleaver_new",0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_no_parry, itc_cleaver|itcf_carry_dagger_front_right,
  967. 247, weight(1.5)|difficulty(0)|spd_rtng(103)|weapon_length(48)|swing_damage(26, cut)|thrust_damage(0, pierce), imodbits_sword, [itm_class(item_class_knife), itm_butchering_knife()]],
  968. ["knife", "Knife", [("peasant_knife_new",0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  969. 306, weight(0.5)|difficulty(0)|spd_rtng(110)|weapon_length(55)|swing_damage(21, cut)|thrust_damage(13, pierce), imodbits_sword, [itm_class(item_class_knife)]],
  970. ["butchering_knife", "Butchering Knife", [("khyber_knife_new",0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_left,
  971. 473, weight(0.75)|difficulty(0)|spd_rtng(108)|weapon_length(70)|swing_damage(24, cut)|thrust_damage(17, pierce), imodbits_sword, [itm_class(item_class_knife), itm_butchering_knife()]],
  972. ["broom", "Broom", [("pw_broom",0),("pw_broom_inv",ixmesh_inventory)], itp_type_polearm|itp_primary|itp_two_handed|itp_cant_use_on_horseback|itp_no_parry, itc_staff|itcf_carry_spear,
  973. 39, weight(2.5)|difficulty(0)|spd_rtng(60)|weapon_length(130)|swing_damage(3, blunt)|thrust_damage(1, blunt), imodbits_none],
  974. ["herding_crook", "Herding Crook", [("pw_herding_crook",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary|itp_wooden_parry|itp_wooden_attack|itp_unbalanced|itp_cant_use_on_horseback|itp_next_item_as_melee, itc_nodachi|itcf_carry_axe_back,
  975. 120, weight(1.5)|difficulty(0)|spd_rtng(70)|weapon_length(108)|swing_damage(10, blunt), imodbits_polearm, [itm_class(item_class_herding_rouse)]],
  976. ["herding_crook_alt", "Herding Crook", [("pw_herding_crook",0)], itp_type_polearm|itp_two_handed|itp_primary|itp_wooden_parry|itp_wooden_attack|itp_unbalanced|itp_cant_use_on_horseback, itc_staff|itcf_carry_axe_back,
  977. 120, weight(1.5)|difficulty(0)|spd_rtng(60)|weapon_length(108)|swing_damage(10, blunt)|thrust_damage(9, blunt), imodbits_polearm, [itm_class(item_class_herding_calm)]],
  978.  
  979. ["fish", "Fish", [("pw_fish",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  980. 68, weight(1)|spd_rtng(72)|weapon_length(45)|swing_damage(2,cut), imodbits_none, [itm_class(item_class_food, 6)]],
  981. ["cooked_fish", "Cooked Fish", [("pw_fish_cooked",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  982. 114, weight(1)|spd_rtng(70)|weapon_length(45)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 40)]],
  983. ["salted_fish", "Salted Fish", [("pw_fish",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  984. 140, weight(1)|spd_rtng(70)|weapon_length(45)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 20)]],
  985. ["wheat_sack", "Wheat Sack", [("pw_throwing_wheat",0),("pw_thrown_wheat",ixmesh_flying_ammo),("pw_wheat_sack",ixmesh_carry),("pw_wheat_sack",ixmesh_inventory)], itp_type_thrown|itp_primary|itp_cant_use_on_horseback, itcf_throw_stone|itcf_carry_quiver_right_vertical|itcf_show_holster_when_drawn,
  986. 75, weight(0.25)|spd_rtng(90)|weapon_length(20)|shoot_speed(10)|max_ammo(10), imodbits_none, [itm_throw_wheat_trigger()]],
  987. ["wheat_sheaf", "Wheat Sheaf", [("pw_wheat_sheaf",0)], itp_type_one_handed_wpn|itp_two_handed|itp_primary|itp_no_parry, itcf_slashleft_onehanded|itcf_slashright_onehanded|itcf_carry_bow_back,
  988. 80, weight(3)|spd_rtng(60)|weapon_length(45)|swing_damage(7,blunt), imodbits_none, [itm_class(item_class_food, 0)]],
  989. ["flour_sack", "Flour Sack", [("pw_flour_sack",0),("pw_flour_sack_carry",ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_carry_quiver_back,
  990. 324, weight(25)|weapon_length(100), imodbits_none, [itm_class(item_class_food, 0)]],
  991. ["bread", "Bread", [("pw_bread_a",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  992. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 50)]],
  993. ["beer_cask", "Beer Cask", [("pw_beer_cask",0),("pw_beer_cask_carry",ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_carry_bow_back,
  994. 360, weight(18)|spd_rtng(20)|weapon_length(100), imodbits_none, [itm_class(item_class_food, 112)]],
  995. ["beer_jug", "Beer Jug", [("pw_beer_jug",0)], itp_type_one_handed_wpn|itp_two_handed|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  996. 90, weight(3)|spd_rtng(70)|weapon_length(40)|swing_damage(4,cut), imodbits_none, [itm_class(item_class_food, 28)]],
  997. ["grapes", "Grapes", [("pw_grape_bunch",0),("pw_grape_a",imodbit_old),("pw_grape_b",imodbit_fine)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  998. 34, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 4)]],
  999. ["must_barrel", "Must Barrel", [("pw_must_barrel",0),("pw_must_barrel_carry",ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_carry_bow_back,
  1000. 160, weight(3)|spd_rtng(20)|weapon_length(100), imodbits_none, [itm_class(item_class_food, 44)]],
  1001. ["wine_barrel", "Wine Barrel", [("pw_wine_barrel",0),("pw_wine_barrel_carry",ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_carry_bow_back,
  1002. 816, weight(20)|spd_rtng(20)|weapon_length(100), imodbits_none, [itm_class(item_class_food, 144)]],
  1003. ["wine_jar", "Wine Jar", [("pw_wine_jar",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  1004. 204, weight(5)|spd_rtng(65)|weapon_length(50)|swing_damage(4,cut), imodbits_none, [itm_class(item_class_food, 36)]],
  1005. ["raw_meat", "Raw Meat", [("pw_meat_raw",0)], itp_type_polearm|itp_two_handed|itp_cant_use_on_horseback|itp_primary, itc_dagger|itcf_carry_bow_back,
  1006. 112, weight(25)|spd_rtng(65)|weapon_length(53)|swing_damage(10,blunt), imodbits_none, [itm_class(item_class_food, 10)]],
  1007. ["cooked_meat", "Cooked Meat", [("pw_meat_cooked",0)], itp_type_polearm|itp_two_handed|itp_cant_use_on_horseback|itp_primary, itc_dagger|itcf_carry_bow_back,
  1008. 316, weight(25)|spd_rtng(60)|weapon_length(53)|swing_damage(8,blunt), imodbits_none, [itm_class(item_class_food, 65)]],
  1009. ["salted_meat", "Salted Meat", [("pw_meat_salted",0)], itp_type_polearm|itp_two_handed|itp_cant_use_on_horseback|itp_primary, itc_dagger|itcf_carry_bow_back,
  1010. 386, weight(25)|spd_rtng(60)|weapon_length(53)|swing_damage(8,blunt), imodbits_none, [itm_class(item_class_food, 40)]],
  1011. ["meat_pie", "Meat Pie", [("pw_meat_pie",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  1012. 280, weight(4)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 75)]],
  1013. ["red_apple", "Red Apple", [("pw_apple_red",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_quiver_right_vertical,
  1014. 20, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 8)]],
  1015. ["apple_pie", "Apple Pie", [("pw_apple_pie",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  1016. 190, weight(4)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 57)]],
  1017. ["carrot", "Carrot", [("pw_carrot",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  1018. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 8)]],
  1019. ["salt_sack", "Salt Sack", [("pw_salt_sack",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_quiver_right_vertical,
  1020. 800, weight(2.0)|spd_rtng(60)|swing_damage(5,blunt)|thrust_damage(5,blunt)|weapon_length(20), imodbits_none, [itm_class(item_class_food, 0)]],
  1021. ["salt", "Salt", [("pw_salt",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger,
  1022. 100, weight(0.25)|spd_rtng(70)|swing_damage(5,blunt)|thrust_damage(5,blunt)|weapon_length(20), imodbits_none, [itm_class(item_class_food, 0)]],
  1023.  
  1024. ["surgeon_scalpel", "Surgeon's Scalpel", [("dagger_b",0),("dagger_b_scabbard",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itcf_thrust_onehanded|itcf_carry_dagger_front_left|itcf_show_holster_when_drawn,
  1025. 730, weight(0.75)|difficulty(0)|spd_rtng(50)|weapon_length(36)|thrust_damage(15, pierce), imodbits_sword],
  1026. ["admin_scalpel", "Admin Scalpel", [("dagger_b",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itcf_thrust_onehanded,
  1027. 0, weight(0.75)|difficulty(30)|spd_rtng(100)|weapon_length(50)|thrust_damage(15, pierce), imodbits_sword],
  1028. ["healing_herb", "Herb", [("pw_herb_a",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itcf_thrust_onehanded|itcf_carry_dagger_front_left,
  1029. 240, weight(0.25)|difficulty(0)|spd_rtng(50)|weapon_length(40)|thrust_damage(1, cut), imodbits_none, [itm_class(item_class_precious, 0)]],
  1030. ["poison_herb", "Herb", [("pw_herb_b",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itcf_thrust_onehanded|itcf_carry_dagger_front_left,
  1031. 325, weight(0.25)|difficulty(0)|spd_rtng(50)|weapon_length(40)|thrust_damage(1, cut), imodbits_none],
  1032.  
  1033. ["dagger", "Dagger", [("dagger",0),("scab_dagger",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_left|itcf_show_holster_when_drawn,
  1034. 533, weight(0.75)|difficulty(0)|spd_rtng(105)|weapon_length(47)|swing_damage(18,cut)|thrust_damage(24,pierce), imodbits_sword],
  1035. ["poisoned_dagger", "Poisoned Dagger", [("pw_dagger_poison",0),("scab_dagger",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_left|itcf_show_holster_when_drawn,
  1036. 1570, weight(0.75)|difficulty(0)|spd_rtng(105)|weapon_length(47)|swing_damage(18,cut)|thrust_damage(24,pierce), imodbits_sword],
  1037. ["thin_lance", "Thin Lance", [("spear_d_2-8m",0)], itp_couchable|itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_spear|itcf_carry_spear,
  1038. 230, weight(3.0)|difficulty(14)|spd_rtng(80)|weapon_length(180)|swing_damage(16, blunt)|thrust_damage(26, pierce), imodbits_polearm],
  1039. ["broken_lance", "Broken Lance", [("pw_broken_lance",0)], itp_type_polearm|itp_no_pick_up_from_ground, 0,
  1040. 0, weight(3.0)|difficulty(14)|spd_rtng(0)|weapon_length(180)|swing_damage(0, blunt)|thrust_damage(0, blunt), imodbits_polearm],
  1041.  
  1042. ["money_bag", "Money Bag", [("pw_money_bag_hold",0),("pw_money_bag",ixmesh_carry),("pw_money_bag_inv",ixmesh_inventory)], itp_type_one_handed_wpn|itp_primary, itcf_carry_quiver_front_right|itcf_thrust_onehanded,
  1043. 0, weight(1)|spd_rtng(80), imodbits_none, [(ti_on_weapon_attack, [(store_trigger_param_1, ":agent_id"), (call_script, "script_cf_use_money_bag_item", ":agent_id")])]],
  1044.  
  1045. ["torch", "Torch", [("pw_torch", 0),("pw_torch",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary, itc_scimitar|itcf_carry_spear,
  1046. 50, weight(2.5)|difficulty(0)|spd_rtng(95)|weapon_length(95)|swing_damage(5,blunt)|thrust_damage(0,pierce), imodbits_none,
  1047. [(ti_on_init_item,
  1048. [(set_position_delta, 0, 60, 0),
  1049. (particle_system_add_new, "psys_torch_fire"),
  1050. (particle_system_add_new, "psys_torch_smoke"),
  1051. (set_current_color,150, 130, 70),
  1052. (add_point_light, 10, 30),
  1053. ])
  1054. ]],
  1055.  
  1056. ["book_a", "Book of Clothing", [("pw_book_a",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_scimitar|itcf_carry_revolver_right,
  1057. 3203, weight(2)|spd_rtng(80)|weapon_length(50), imodbits_none, [itm_read_book_trigger("str_book_of_clothing")]],
  1058. ["book_b", "Book of Weapons", [("pw_book_b",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_scimitar|itcf_carry_revolver_right,
  1059. 7324, weight(2)|spd_rtng(80)|weapon_length(50), imodbits_none, [itm_read_book_trigger("str_book_of_weapons")]],
  1060. ["book_c", "Book of Armor", [("pw_book_c",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_scimitar|itcf_carry_revolver_right,
  1061. 12030, weight(2)|spd_rtng(80)|weapon_length(50), imodbits_none, [itm_read_book_trigger("str_book_of_armor")]],
  1062. ["book_d", "Book of Healing", [("pw_book_d",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_scimitar|itcf_carry_revolver_right,
  1063. 1076, weight(2.5)|spd_rtng(80)|weapon_length(50), imodbits_none, [itm_read_book_trigger("str_book_of_healing")]],
  1064. ["book_e", "Book", [("pw_book_e",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_scimitar|itcf_carry_revolver_right,
  1065. 20634, weight(2.25)|spd_rtng(80)|weapon_length(50), imodbits_none],
  1066. ["book_f", "Sacred Book", [("pw_book_f",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry|itp_next_item_as_melee, itcf_slashright_onehanded|itcf_carry_revolver_right,
  1067. 46400, weight(2)|spd_rtng(80)|weapon_length(50), imodbits_none, [itm_swap_item_trigger(this_item="itm_book_f", other_item="itm_book_f_open")]],
  1068. ["book_f_open", "Sacred Book", [("pw_book_f_held",0),("pw_book_f_open",ixmesh_carry),("pw_book_f",ixmesh_inventory)], itp_type_two_handed_wpn|itp_two_handed|itp_primary|itp_no_parry, itcf_thrust_onehanded|itcf_carry_revolver_right,
  1069. 46400, weight(2)|spd_rtng(80)|weapon_length(50), imodbits_none, [itm_swap_item_trigger(this_item="itm_book_f_open", other_item="itm_book_f")]],
  1070.  
  1071. ["lyre", "Lyre", [("pw_lyre",0),("pw_lyre_carry",ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_carry_axe_back,
  1072. 659, weight(1.75)|weapon_length(80), imodbits_none],
  1073. ["lute", "Lute", [("pw_lute",0),("pw_lute_carry",ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_carry_axe_back,
  1074. 850, weight(2.5)|weapon_length(85), imodbits_none],
  1075. ["dart", "Dart", [("pw_dart",0)], itp_type_thrown|itp_primary, itcf_throw_javelin|itcf_carry_quiver_right_vertical,
  1076. 35, weight(1)|difficulty(0)|spd_rtng(90)|shoot_speed(21)|thrust_damage(0, blunt)|max_ammo(3)|weapon_length(32), imodbits_thrown],
  1077. ["die", "Die", [("pw_die",0),("pw_die_inv",ixmesh_inventory)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itcf_carry_pistol_front_left,
  1078. 120, weight(0.25)|weapon_length(30), imodbits_none],
  1079.  
  1080. #MOR BEGIN
  1081. #Roman items begin
  1082.  
  1083. ["roman_helm_copper", "Auxiliary Helmet", [("roman_helm_copper",0)], itp_type_head_armor |itp_fit_to_head ,0, 150 , weight(1.8)|abundance(100)|head_armor(30)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1084. ["roman_helm_lego", "Legionary Helmet", [("roman_helm_lego",0)], itp_type_head_armor ,0, 300 , weight(2.0)|abundance(100)|head_armor(40)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1085. ["roman_helm_preator", "Praetorian Helmet", [("roman_helm_preator",0)], itp_type_head_armor ,0, 400 , weight(2.3)|abundance(100)|head_armor(45)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1086. ["blue_praetorian_helmet", "Praetorian Helmet", [("blue_praetorian_helmet",0)], itp_type_head_armor ,0, 400 , weight(2.3)|abundance(100)|head_armor(45)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1087. ["green_praetorian_helmet", "Praetorian Helmet", [("green_praetorian_helmet",0)], itp_type_head_armor ,0, 400 , weight(2.3)|abundance(100)|head_armor(45)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1088. ["black_praetorian_helmet", "Praetorian Helmet", [("black_praetorian_helmet",0)], itp_type_head_armor ,0, 400 , weight(2.3)|abundance(100)|head_armor(45)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1089. ["white_praetorian_helmet", "Praetorian Helmet", [("white_praetorian_helmet",0)], itp_type_head_armor ,0, 400 , weight(2.3)|abundance(100)|head_armor(45)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1090. ["roman_helm_cent", "Centurion Helmet", [("roman_helm_cent",0)], itp_type_head_armor ,0, 500 , weight(2.5)|abundance(100)|head_armor(50)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1091. ["white_centurion_helmet", "Centurion Helmet", [("white_centurion_helmet",0)], itp_type_head_armor ,0, 500 , weight(2.5)|abundance(100)|head_armor(50)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1092. ["wolf_pelt", "Wolf Helmet", [("wolf_pelt",0)], itp_type_head_armor|itp_attach_armature |itp_fit_to_head ,0, 200 , weight(2.0)|abundance(100)|head_armor(26)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1093.  
  1094. # New Jordan helmets test
  1095. ["aux_helmet", "Auxiliary Helmet", [("aux_helmet",0)], itp_type_head_armor |itp_fit_to_head ,0, 150 , weight(1.8)|abundance(100)|head_armor(30)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1096. ["leg_helmet", "Legionary Helmet", [("leg_helmet",0)], itp_type_head_armor ,0, 300 , weight(2.0)|abundance(100)|head_armor(40)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1097. ["pra_helmet", "Praetorian Helmet", [("pra_helmet",0)], itp_type_head_armor ,0, 400 , weight(2.3)|abundance(100)|head_armor(45)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1098. ["pra_helmet_white", "Praetorian Helmet", [("pra_helmet_white",0)], itp_type_head_armor ,0, 400 , weight(2.3)|abundance(100)|head_armor(45)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1099. ["pra_helmet_black", "Praetorian Helmet", [("pra_helmet_black",0)], itp_type_head_armor ,0, 400 , weight(2.3)|abundance(100)|head_armor(45)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1100. ["cen_helmet_frontcrested", "Front Crested Centurion Helmet", [("cen_helmet_frontcrested",0)], itp_type_head_armor ,0, 500 , weight(2.5)|abundance(100)|head_armor(50)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1101. ["cen_helmet_frontcrested_white", "Front Crested Centurion Helmet", [("cen_helmet_frontcrested_white",0)], itp_type_head_armor ,0, 500 , weight(2.5)|abundance(100)|head_armor(50)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1102. ["cen_helmet_frontcrested_black", "Front Crested Centurion Helmet", [("cen_helmet_frontcrested_black",0)], itp_type_head_armor ,0, 500 , weight(2.5)|abundance(100)|head_armor(50)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1103. ["cen_helmet", "Side Crested Centurion Helmet", [("cen_helmet",0)], itp_type_head_armor ,0, 500 , weight(2.5)|abundance(100)|head_armor(50)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1104. ["cen_helmet_white", "Side Crested Centurion Helmet", [("cen_helmet_white",0)], itp_type_head_armor ,0, 500 , weight(2.5)|abundance(100)|head_armor(50)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1105. ["cen_helmet_black", "Side Crested Centurion Helmet", [("cen_helmet_black",0)], itp_type_head_armor ,0, 500 , weight(2.5)|abundance(100)|head_armor(50)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1106.  
  1107. ["roman_shirt", "Roman Tunic", [("roman_shirt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1108. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1109. ["red_roman_shirt", "Roman Tunic", [("red_roman_shirt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1110. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1111. ["blue_roman_shirt", "Roman Tunic", [("blue_roman_shirt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1112. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1113. ["green_roman_shirt", "Roman Tunic", [("green_roman_shirt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1114. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1115. ["black_roman_shirt", "Roman Tunic", [("black_roman_shirt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1116. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1117. # New tunic to segmentata test
  1118. # New Roman Tunics
  1119. #["roman_tunic_new_old", "Roman Tunic (Placeholder)", [("roman_tunic_new_old",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1120. # 0 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1121. ["red_tunic_white_pelt", "Velite Tunic", [("red_tunic_white_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1122. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1123. ["red_tunic_brown_pelt", "Velite Tunic", [("red_tunic_brown_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1124. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1125. ["red_tunic_black_pelt", "Velite Tunic", [("red_tunic_black_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1126. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1127. ["blue_tunic_white_pelt", "Velite Tunic", [("blue_tunic_white_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1128. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1129. ["blue_tunic_brown_pelt", "Velite Tunic", [("blue_tunic_brown_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1130. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1131. ["blue_tunic_black_pelt", "Velite Tunic", [("blue_tunic_black_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1132. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1133. ["brown_tunic_white_pelt", "Velite Tunic", [("brown_tunic_white_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1134. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1135. ["brown_tunic_brown_pelt", "Velite Tunic", [("brown_tunic_brown_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1136. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1137. ["brown_tunic_black_pelt", "Velite Tunic", [("brown_tunic_black_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1138. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1139. ["green_tunic_white_pelt", "Velite Tunic", [("green_tunic_white_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1140. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1141. ["green_tunic_brown_pelt", "Velite Tunic", [("green_tunic_brown_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1142. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1143. ["green_tunic_black_pelt", "Velite Tunic", [("green_tunic_black_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1144. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1145. ["white_tunic_white_pelt", "Velite Tunic", [("white_tunic_white_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1146. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1147. ["white_tunic_brown_pelt", "Velite Tunic", [("white_tunic_brown_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1148. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1149. ["white_tunic_black_pelt", "Velite Tunic", [("white_tunic_black_pelt",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1150. 100 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(2)|leg_armor(0)|difficulty(0) ,imodbits_cloth ],
  1151.  
  1152. #["roman_shirt_red", "Red Tunic", [("roman_shirt_red",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1153. # 57 , weight(2)|abundance(100)|head_armor(0)|body_armor(11)|leg_armor(6)|difficulty(0) ,imodbits_cloth ],
  1154. #["roman_shirt_white", "White Tunic", [("roman_shirt_white",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1155. # 57 , weight(2)|abundance(100)|head_armor(0)|body_armor(11)|leg_armor(6)|difficulty(0) ,imodbits_cloth ],
  1156. #["roman_light_armor", "Light Tunic", [("roman_light_armor",0)], itp_type_body_armor|itp_covers_legs|itp_civilian,0,
  1157. # 300 , weight(2.0)|abundance(100)|head_armor(0)|body_armor(11)|leg_armor(2)|difficulty(0) ,imodbits_cloth ],
  1158. #["roman_squamata", "Roman Bronze Squamata", [("roman_squamata",0)], itp_type_body_armor |itp_covers_legs|itp_civilian,0,
  1159. # 240 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(47)|leg_armor(10)|difficulty(0) ,imodbits_cloth ],
  1160. ["roman_hamata", "Lorica Hamata", [("roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1161. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1162. ["red_roman_hamata", "Lorica Hamata", [("red_roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1163. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1164. ["blue_roman_hamata", "Lorica Hamata", [("blue_roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1165. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1166. ["brown_roman_hamata", "Lorica Hamata", [("brown_roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1167. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1168. ["green_roman_hamata", "Lorica Hamata", [("green_roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1169. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1170. ["black_roman_hamata", "Lorica Hamata", [("black_roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1171. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1172.  
  1173. ["roman_hamata_new", "Lorica Hamata", [("roman_hamata_new",0)], itp_type_body_armor |itp_covers_legs ,0,
  1174. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1175. ["roman_hamata_new_blu", "Lorica Hamata", [("roman_hamata_new_blu",0)], itp_type_body_armor |itp_covers_legs ,0,
  1176. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1177. ["roman_hamata_new_brown", "Lorica Hamata", [("roman_hamata_new_brown",0)], itp_type_body_armor |itp_covers_legs ,0,
  1178. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1179. ["roman_hamata_new_green", "Lorica Hamata", [("roman_hamata_new_green",0)], itp_type_body_armor |itp_covers_legs ,0,
  1180. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1181. ["roman_hamata_new_white", "Lorica Hamata", [("roman_hamata_new_white",0)], itp_type_body_armor |itp_covers_legs ,0,
  1182. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1183.  
  1184. #["roman_hamata_free", "Lorica Hamata", [("roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1185. # 0 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1186. ["red_roman_hamata_free", "Lorica Hamata", [("red_roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1187. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1188. ["blue_roman_hamata_free", "Lorica Hamata", [("blue_roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1189. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1190. ["brown_roman_hamata_free", "Lorica Hamata", [("brown_roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1191. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1192. ["green_roman_hamata_free", "Lorica Hamata", [("green_roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1193. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1194. ["black_roman_hamata_free", "Lorica Hamata", [("black_roman_hamata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1195. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1196.  
  1197. ["roman_hamata_new_free", "Lorica Hamata", [("roman_hamata_new",0)], itp_type_body_armor |itp_covers_legs ,0,
  1198. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1199. ["roman_hamata_new_blu_free", "Lorica Hamata", [("roman_hamata_new_blu",0)], itp_type_body_armor |itp_covers_legs ,0,
  1200. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1201. ["roman_hamata_new_brown_free", "Lorica Hamata", [("roman_hamata_new_brown",0)], itp_type_body_armor |itp_covers_legs ,0,
  1202. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1203. ["roman_hamata_new_green_free", "Lorica Hamata", [("roman_hamata_new_green",0)], itp_type_body_armor |itp_covers_legs ,0,
  1204. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1205. ["roman_hamata_new_white_free", "Lorica Hamata", [("roman_hamata_new_white",0)], itp_type_body_armor |itp_covers_legs ,0,
  1206. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1207.  
  1208. ["white_wolf_pelt_hamata_1", "Wolf Pelt Lorica Hamata", [("white_wolf_pelt_hamata_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1209. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1210. ["white_wolf_pelt_hamata_2", "Wolf Pelt Lorica Hamata", [("white_wolf_pelt_hamata_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1211. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1212. ["brown_wolf_pelt_hamata_1", "Wolf Pelt Lorica Hamata", [("brown_wolf_pelt_hamata_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1213. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1214. ["brown_wolf_pelt_hamata_2", "Wolf Pelt Lorica Hamata", [("brown_wolf_pelt_hamata_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1215. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1216. ["black_wolf_pelt_hamata_1", "Wolf Pelt Lorica Hamata", [("black_wolf_pelt_hamata_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1217. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1218. ["black_wolf_pelt_hamata_2", "Wolf Pelt Lorica Hamata", [("black_wolf_pelt_hamata_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1219. 1234 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1220.  
  1221. ["roman_hamata_bearer", "Lorica Hamata", [("roman_hamata_bearer",0)], itp_type_body_armor |itp_covers_legs ,0,
  1222. 380 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(40)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1223.  
  1224. ["roman_squamata_new", "Lorica Squamata", [("roman_squamata_new",0)], itp_type_body_armor |itp_covers_legs ,0,
  1225. 340 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1226. ["roman_squamata_new_blu", "Lorica Squamata", [("roman_squamata_new_blu",0)], itp_type_body_armor |itp_covers_legs ,0,
  1227. 340 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1228. ["roman_squamata_new_brown", "Lorica Squamata", [("roman_squamata_new_brown",0)], itp_type_body_armor |itp_covers_legs ,0,
  1229. 340 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1230. ["roman_squamata_new_green", "Lorica Squamata", [("roman_squamata_new_green",0)], itp_type_body_armor |itp_covers_legs ,0,
  1231. 340 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1232. ["roman_squamata_new_white", "Lorica Squamata", [("roman_squamata_new_white",0)], itp_type_body_armor |itp_covers_legs ,0,
  1233. 340 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1234.  
  1235. ["white_wolf_pelt_squamata_1", "Wolf Pelt Lorica Squamata", [("white_wolf_pelt_squamata_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1236. 340 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1237. ["white_wolf_pelt_squamata_2", "Wolf Pelt Lorica Squamata", [("white_wolf_pelt_squamata_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1238. 340 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1239. ["brown_wolf_pelt_squamata_1", "Wolf Pelt Lorica Squamata", [("brown_wolf_pelt_squamata_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1240. 340 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1241. ["brown_wolf_pelt_squamata_2", "Wolf Pelt Lorica Squamata", [("brown_wolf_pelt_squamata_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1242. 340 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1243. ["black_wolf_pelt_squamata_1", "Wolf Pelt Lorica Squamata", [("black_wolf_pelt_squamata_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1244. 340 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1245. ["black_wolf_pelt_squamata_2", "Wolf Pelt Lorica Squamata", [("black_wolf_pelt_squamata_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1246. 340 , weight(14.0)|abundance(100)|head_armor(0)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1247. ["brown_bear_pelt_squamata_1", "Bear Pelt Lorica Squamata", [("brown_bear_pelt_squamata_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1248. 600 , weight(16.0)|abundance(100)|head_armor(5)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1249. ["brown_bear_pelt_squamata_2", "Bear Pelt Lorica Squamata", [("brown_bear_pelt_squamata_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1250. 600 , weight(16.0)|abundance(100)|head_armor(5)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1251. ["black_bear_pelt_squamata_1", "Bear Pelt Lorica Squamata", [("black_bear_pelt_squamata_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1252. 600 , weight(16.0)|abundance(100)|head_armor(5)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1253. ["black_bear_pelt_squamata_2", "Bear Pelt Lorica Squamata", [("black_bear_pelt_squamata_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1254. 600 , weight(16.0)|abundance(100)|head_armor(5)|body_armor(45)|leg_armor(6)|difficulty(7) ,imodbits_armor ],
  1255.  
  1256. ["roman_armor", "Legionary Lorica Segmentata", [("roman_armor",0)], itp_type_body_armor|itp_covers_legs,0,
  1257. 500 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(50)|leg_armor(8)|difficulty(7) ,imodbits_cloth ], ## Was 36 body armor, now 50
  1258. ["blue_lorica_segmentata", "Legionary Lorica Segmentata", [("blue_lorica_segmentata",0)], itp_type_body_armor|itp_covers_legs,0,
  1259. 500 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(50)|leg_armor(8)|difficulty(7) ,imodbits_cloth ], ## Was 36 body armor, now 50
  1260. ["brown_lorica_segmentata", "Legionary Lorica Segmentata", [("brown_lorica_segmentata",0)], itp_type_body_armor|itp_covers_legs,0,
  1261. 500 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(50)|leg_armor(8)|difficulty(7) ,imodbits_cloth ], ## Was 36 body armor, now 50
  1262. ["green_lorica_segmentata", "Legionary Lorica Segmentata", [("green_lorica_segmentata",0)], itp_type_body_armor|itp_covers_legs,0,
  1263. 500 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(50)|leg_armor(8)|difficulty(7) ,imodbits_cloth ], ## Was 36 body armor, now 50
  1264. ["black_lorica_segmentata", "Legionary Lorica Segmentata", [("black_lorica_segmentata",0)], itp_type_body_armor|itp_covers_legs,0,
  1265. 500 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(50)|leg_armor(8)|difficulty(7) ,imodbits_cloth ], ## Was 36 body armor, now 50
  1266.  
  1267. ["roman_segmentata_new", "Legionary Lorica Segmentata", [("roman_segmentata_new",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1268. 500 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(50)|leg_armor(8)|difficulty(7) ,imodbits_cloth ],
  1269. ["roman_segmentata_new_blu", "Legionary Lorica Segmentata", [("roman_segmentata_new_blu",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1270. 500 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(50)|leg_armor(8)|difficulty(7) ,imodbits_cloth ],
  1271. ["roman_segmentata_new_brown", "Legionary Lorica Segmentata", [("roman_segmentata_new_brown",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1272. 500 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(50)|leg_armor(8)|difficulty(7) ,imodbits_cloth ],
  1273. ["roman_segmentata_new_green", "Legionary Lorica Segmentata", [("roman_segmentata_new_green",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1274. 500 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(50)|leg_armor(8)|difficulty(7) ,imodbits_cloth ],
  1275. ["roman_segmentata_new_white", "Legionary Lorica Segmentata", [("roman_segmentata_new_white",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1276. 500 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(50)|leg_armor(8)|difficulty(7) ,imodbits_cloth ],
  1277.  
  1278. ["roman_armor_white", "Praetorian Lorica Segmentata", [("roman_armor_white",0)], itp_type_body_armor |itp_covers_legs ,0,
  1279. 1400 , weight(20.0)|abundance(100)|head_armor(0)|body_armor(54)|leg_armor(10)|difficulty(8) ,imodbits_armor ], ## Was 40 body armor, 10 leg armor now 52 -> 46 14 leg armor
  1280. ["purple_praetorian_segmentata", "Praetorian Lorica Segmentata", [("purple_praetorian_segmentata",0)], itp_type_body_armor |itp_covers_legs ,0,
  1281. 1400 , weight(20.0)|abundance(100)|head_armor(0)|body_armor(54)|leg_armor(10)|difficulty(8) ,imodbits_armor ], ## Was 40 body armor, 10 leg armor now 52 -> 46, 14 leg armor
  1282. #["roman_cent_hamata", "Centurion Lorica Hamata", [("roman_cent_hamata",0)], itp_type_body_armor|itp_covers_legs,0,
  1283. # 1800 , weight(16.0)|abundance(100)|head_armor(0)|body_armor(58)|leg_armor(12)|difficulty(0) ,imodbits_armor ],
  1284. ["cen_hamata", "Centurion Lorica Hamata", [("cen_hamata",0)], itp_type_body_armor|itp_covers_legs,0,
  1285. 1800 , weight(16.0)|abundance(100)|head_armor(0)|body_armor(58)|leg_armor(12)|difficulty(0) ,imodbits_armor ],
  1286. ["cen_hamata_cloak", "Centurion Lorica Hamata with Cloak", [("cen_hamata_cloak",0)], itp_type_body_armor|itp_covers_legs,0,
  1287. 1800 , weight(16.0)|abundance(100)|head_armor(0)|body_armor(58)|leg_armor(12)|difficulty(0) ,imodbits_armor ],
  1288. ["cen_hamata_cloak_red", "Centurion Lorica Hamata with Cloak", [("cen_hamata_cloak_red",0)], itp_type_body_armor|itp_covers_legs,0,
  1289. 1800 , weight(16.0)|abundance(100)|head_armor(0)|body_armor(58)|leg_armor(12)|difficulty(0) ,imodbits_armor ],
  1290. ["cen_hamata_cloak_blue", "Centurion Lorica Hamata with Cloak", [("cen_hamata_cloak_blue",0)], itp_type_body_armor|itp_covers_legs,0,
  1291. 1800 , weight(16.0)|abundance(100)|head_armor(0)|body_armor(58)|leg_armor(12)|difficulty(0) ,imodbits_armor ],
  1292. ["cen_hamata_cloak_brown", "Centurion Lorica Hamata with Cloak", [("cen_hamata_cloak_brown",0)], itp_type_body_armor|itp_covers_legs,0,
  1293. 1800 , weight(16.0)|abundance(100)|head_armor(0)|body_armor(58)|leg_armor(12)|difficulty(0) ,imodbits_armor ],
  1294. ["cen_hamata_cloak_green", "Centurion Lorica Hamata with Cloak", [("cen_hamata_cloak_green",0)], itp_type_body_armor|itp_covers_legs,0,
  1295. 1800 , weight(16.0)|abundance(100)|head_armor(0)|body_armor(58)|leg_armor(12)|difficulty(0) ,imodbits_armor ],
  1296. ["cen_hamata_cloak_white", "Centurion Lorica Hamata with Cloak", [("cen_hamata_cloak_white",0)], itp_type_body_armor|itp_covers_legs,0,
  1297. 1800 , weight(16.0)|abundance(100)|head_armor(0)|body_armor(58)|leg_armor(12)|difficulty(0) ,imodbits_armor ],
  1298. ["cen_hamata_cloak_black", "Centurion Lorica Hamata with Cloak", [("cen_hamata_cloak_black",0)], itp_type_body_armor|itp_covers_legs,0,
  1299. 1800 , weight(16.0)|abundance(100)|head_armor(0)|body_armor(58)|leg_armor(12)|difficulty(0) ,imodbits_armor ],
  1300.  
  1301. ["roman_greaves_caligea", "Caligae", [("caligae_legs",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature ,0,
  1302. 11 , weight(1.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1303. ["caligae_socks_legs_red", "Caligae with Socks", [("caligae_socks_legs_red",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature ,0,
  1304. 200 , weight(1.2)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(6)|difficulty(0) ,imodbits_cloth ],
  1305. ["caligae_socks_legs_blue", "Caligae with Socks", [("caligae_socks_legs_blue",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature ,0,
  1306. 200 , weight(1.2)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(6)|difficulty(0) ,imodbits_cloth ],
  1307. ["caligae_socks_legs_brown", "Caligae with Socks", [("caligae_socks_legs_brown",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature ,0,
  1308. 200 , weight(1.2)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(6)|difficulty(0) ,imodbits_cloth ],
  1309. ["caligae_socks_legs_green", "Caligae with Socks", [("caligae_socks_legs_green",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature ,0,
  1310. 200 , weight(1.2)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(6)|difficulty(0) ,imodbits_cloth ],
  1311. ["caligae_socks_legs_grey", "Caligae with Socks", [("caligae_socks_legs_grey",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature ,0,
  1312. 200 , weight(1.2)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(6)|difficulty(0) ,imodbits_cloth ],
  1313. ["caligae_wraps_legs_red", "Caligae with Foot Wraps", [("caligae_wraps_legs_red",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature ,0,
  1314. 400 , weight(2.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(8)|difficulty(0) ,imodbits_cloth ],
  1315. ["caligae_wraps_legs_blue", "Caligae with Foot Wraps", [("caligae_wraps_legs_blue",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature ,0,
  1316. 400 , weight(2.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(8)|difficulty(0) ,imodbits_cloth ],
  1317. ["caligae_wraps_legs_brown", "Caligae with Foot Wraps", [("caligae_wraps_legs_brown",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature ,0,
  1318. 400 , weight(2.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(8)|difficulty(0) ,imodbits_cloth ],
  1319. ["caligae_wraps_legs_green", "Caligae with Foot Wraps", [("caligae_wraps_legs_green",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature ,0,
  1320. 400 , weight(2.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(8)|difficulty(0) ,imodbits_cloth ],
  1321. ["caligae_wraps_legs_grey", "Caligae with Foot Wraps", [("caligae_wraps_legs_grey",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature ,0,
  1322. 400 , weight(2.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(8)|difficulty(0) ,imodbits_cloth ],
  1323. ["copper_greaves", "Copper Centurion Greaves", [("copper_greaves",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1324. 600 , weight(2.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(10)|difficulty(0) ,imodbits_armor ],
  1325. ["metal_greaves", "Iron Centurion Greaves", [("metal_greaves",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1326. 800 , weight(4.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(12)|difficulty(0) ,imodbits_armor ],
  1327.  
  1328. #["roman_greaves_gutter_single", "Single Shin Guard", [("roman_greaves_gutter_single",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1329. # 180 , weight(2.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(20)|difficulty(0) ,imodbits_cloth ],
  1330. #["roman_greaves_gutter", "Duel Shin Guards", [("roman_greaves_gutter",0)], itp_type_foot_armor | itp_attach_armature ,0,
  1331. # 360 , weight(4.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(30)|difficulty(0) ,imodbits_armor ],
  1332. #["roman_greaves_greek", "Greaves", [("roman_greaves_greek",0)], itp_type_foot_armor | itp_attach_armature ,0,
  1333. # 540 , weight(6.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(36)|difficulty(8) ,imodbits_armor ],
  1334.  
  1335. ["copper_manica","Copper Manica", [("copper_manica_R",0),("copper_manica_R",imodbit_reinforced)], itp_merchandise|itp_type_hand_armor,0, 200, weight(1.0)|abundance(100)|body_armor(3)|difficulty(0),imodbits_armor],
  1336. ["metal_manica","Iron Manica", [("metal_manica_R",0),("metal_manica_R",imodbit_reinforced)], itp_merchandise|itp_type_hand_armor,0, 400, weight(1.0)|abundance(100)|body_armor(6)|difficulty(0),imodbits_armor],
  1337.  
  1338. #["manica_R", "Legionary Segmentata with Iron Manica", [("manica_R",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1339. # 900 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(56)|leg_armor(8)|difficulty(7) ,imodbits_cloth ],
  1340. #["manica_R_blu", "Legionary Segmentata with Iron Manica", [("manica_R_blu",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1341. # 900 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(56)|leg_armor(8)|difficulty(7) ,imodbits_cloth ],
  1342. #["manica_R_brown", "Legionary Segmentata with Iron Manica", [("manica_R_brown",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1343. # 900 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(56)|leg_armor(8)|difficulty(7) ,imodbits_cloth ],
  1344. #["manica_R_green", "Legionary Segmentata with Iron Manica", [("manica_R_green",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1345. # 900 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(56)|leg_armor(8)|difficulty(7) ,imodbits_cloth ],
  1346. #["manica_R_white", "Legionary Segmentata with Iron Manica", [("manica_R_white",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1347. # 900 , weight(18.0)|abundance(100)|head_armor(0)|body_armor(56)|leg_armor(8)|difficulty(7) ,imodbits_cloth ],
  1348. #["manica_R_gauntlet","Metal Manica", [("manica_R",0),("manica_R",imodbit_reinforced)], itp_merchandise|itp_type_hand_armor,0, 1040, weight(1.0)|abundance(100)|body_armor(7)|difficulty(0),imodbits_armor],
  1349. #["gauntlets_testing","Gauntlets", [("gauntlets_L",0),("gauntlets_L",imodbit_reinforced)], itp_merchandise|itp_type_hand_armor,0, 1040, weight(1.0)|abundance(100)|body_armor(7)|difficulty(0),imodbits_armor],
  1350.  
  1351. #["saddle_horse_roman","Roman Horse", [("saddle_horse",0),("horse_c",imodbits_horse_good)], itp_merchandise|itp_type_horse, 0, 400,abundance(90)|hit_points(100)|body_armor(12)|difficulty(1)|horse_speed(45)|horse_maneuver(48)|horse_charge(40)|horse_scale(104),imodbits_horse_basic],
  1352. #["roman_horse_2","Roman Pony", [("roman_horse_2",0)], itp_merchandise|itp_type_horse, 0, 240,abundance(90)|hit_points(100)|body_armor(10)|difficulty(3)|horse_speed(45)|horse_maneuver(48)|horse_charge(30)|horse_scale(104),imodbits_horse_basic],
  1353. #["roman_courser","Roman Courser", [("roman_courser",0)], itp_merchandise|itp_type_horse, 0, 600,abundance(90)|body_armor(8)|hit_points(90)|difficulty(3)|horse_speed(50)|horse_maneuver(46)|horse_charge(50)|horse_scale(106),imodbits_horse_basic|imodbit_champion],
  1354. #["roman_horse_1","Roman Charger", [("roman_horse_1",0),("hunting_horse",imodbits_horse_good)], itp_merchandise|itp_type_horse, 0, 600,abundance(90)|hit_points(110)|body_armor(16)|difficulty(3)|horse_speed(40)|horse_maneuver(50)|horse_charge(60)|horse_scale(108),imodbits_horse_basic|imodbit_champion],
  1355.  
  1356. ["roman_gladius_1", "Gladius Hispaniensis", [("roman_gladius_1",0),("roman_gladius_1_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_dagger_front_right
  1357. |itcf_show_holster_when_drawn,
  1358. 152 , weight(1.5)|difficulty(0)|spd_rtng(100) | weapon_length(68)|swing_damage(18, cut) | thrust_damage(21, pierce),imodbits_sword_high ],
  1359. ["roman_gladius_2", "Gladius Pompeii", [("roman_gladius_2",0),("roman_gladius_2_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_dagger_front_right
  1360. |itcf_show_holster_when_drawn,
  1361. 260 , weight(1.5)|difficulty(0)|spd_rtng(100) | weapon_length(76)|swing_damage(22, cut) | thrust_damage(25, pierce),imodbits_sword_high ],
  1362. ["roman_gladius_3", "Gladius Fulham", [("roman_gladius_3",0),("roman_gladius_3_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_dagger_front_right
  1363. |itcf_show_holster_when_drawn,
  1364. 480 , weight(1.5)|difficulty(0)|spd_rtng(100) | weapon_length(72)|swing_damage(22, cut) | thrust_damage(38, pierce),imodbits_sword_high ],
  1365.  
  1366. ["gladius_hispaneinsis", "Gladius Hispaniensis", [("gladius_hispaneinsis",0),("roman_gladius_1_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_dagger_front_right
  1367. |itcf_show_holster_when_drawn,
  1368. 152 , weight(1.5)|difficulty(0)|spd_rtng(97) | weapon_length(69)|swing_damage(20, cut) | thrust_damage(24, pierce),imodbits_sword_high ], # Was 100 speed rating
  1369. #["gladius_pompeii", "Gladius Pompeii", [("gladius_pompeii",0),("roman_gladius_2_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1370. # 260 , weight(1.5)|difficulty(0)|spd_rtng(90) | weapon_length(74)|swing_damage(22, cut) | thrust_damage(25, pierce),imodbits_sword_high ],
  1371. #["gladius_fulham", "Gladius Fulham", [("gladius_fulham",0),("roman_gladius_3_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1372. # 480 , weight(1.5)|difficulty(0)|spd_rtng(90) | weapon_length(72)|swing_damage(27, cut) | thrust_damage(35, pierce),imodbits_sword_high ],
  1373. #["gladius_mainz", "Gladius Mainz", [("gladius_mainz",0),("roman_gladius_3_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1374. # 480 , weight(1.5)|difficulty(0)|spd_rtng(90) | weapon_length(72)|swing_damage(27, cut) | thrust_damage(37, pierce),imodbits_sword_high ],
  1375.  
  1376. ["roman_gladius_one", "Gladius Pompeii", [("gladius_pompeii",0),("roman_gladius_2_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_dagger_front_right
  1377. |itcf_show_holster_when_drawn,
  1378. 260 , weight(1.5)|difficulty(0)|spd_rtng(97) | weapon_length(64)|swing_damage(28, cut) | thrust_damage(30, pierce),imodbits_sword_high ], # Was 100 speed rating
  1379. ["roman_gladius_two", "Gladius Fulham", [("gladius_fulham",0),("roman_gladius_3_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_dagger_front_right
  1380. |itcf_show_holster_when_drawn,
  1381. 520 , weight(1.5)|difficulty(0)|spd_rtng(95) | weapon_length(65)|swing_damage(30, cut) | thrust_damage(34, pierce),imodbits_sword_high ], # Was 98 speed rating
  1382. ["roman_gladius_three", "Gladius Mainz", [("gladius_mainz",0),("roman_gladius_3_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_dagger_front_right
  1383. |itcf_show_holster_when_drawn,
  1384. 520 , weight(1.5)|difficulty(0)|spd_rtng(95) | weapon_length(61)|swing_damage(34, cut) | thrust_damage(30, pierce),imodbits_sword_high ], # Was 98 speed rating
  1385.  
  1386. ["roman_cav_sword_1", "Semispathium", [("roman_cav_sword_1",0),("roman_cav_sword_1_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1387. 190 , weight(2.0)|difficulty(0)|spd_rtng(97) | weapon_length(92)|swing_damage(25 , cut) | thrust_damage(18 , pierce),imodbits_sword_high ],
  1388. ["roman_cav_sword_3", "Auxiliary Spatha", [("roman_cav_sword_3",0),("roman_cav_sword_3_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1389. 280 , weight(2.3)|difficulty(0)|spd_rtng(95) | weapon_length(95)|swing_damage(28 , cut) | thrust_damage(20 , pierce),imodbits_sword_high ],
  1390. ["roman_cav_sword_2", "Cavalry Spatha", [("roman_cav_sword_2",0),("roman_cav_sword_2_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1391. 420 , weight(2.5)|difficulty(0)|spd_rtng(94) | weapon_length(97)|swing_damage(32 , cut) | thrust_damage(25 , pierce),imodbits_sword_high ],
  1392.  
  1393. ["spatha_short", "Semispathium", [("spatha_short",0),("roman_cav_sword_1_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1394. 0 , weight(2.0)|difficulty(0)|spd_rtng(94) | weapon_length(86)|swing_damage(26 , cut) | thrust_damage(16 , pierce),imodbits_sword_high ],
  1395. #["spatha_mainz", "Mainz Spatha", [("spatha_mainz",0),("roman_cav_sword_3_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1396. # 280 , weight(2.3)|difficulty(0)|spd_rtng(90) | weapon_length(95)|swing_damage(28 , cut) | thrust_damage(20 , pierce),imodbits_sword_high ],
  1397. ["spatha_cavalry", "Cavalry Spatha", [("spatha_cavalry",0),("roman_cav_sword_2_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1398. 640 , weight(2.5)|difficulty(0)|spd_rtng(90) | weapon_length(97)|swing_damage(34 , cut) | thrust_damage(20 , pierce),imodbits_sword_high ],
  1399. ["roman_spatha_one", "Mainz Spatha", [("spatha_mainz",0),("roman_cav_sword_3_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1400. 320 , weight(2.3)|difficulty(0)|spd_rtng(92) | weapon_length(87)|swing_damage(28 , cut) | thrust_damage(28 , pierce),imodbits_sword_high ],
  1401.  
  1402. ["roman_spear_1", "Short Hasta", [("roman_spear_1",0),("roman_spear_1", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear,
  1403. 0 , weight(2.0)|difficulty(0)|spd_rtng(95) | weapon_length(118)|swing_damage(0 , blunt) | thrust_damage(33 , pierce),imodbits_polearm ], # Was 28p
  1404. ["roman_spear_2", "Hasta", [("roman_spear_2",0),("roman_spear_2", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear,
  1405. 520 , weight(2.5)|difficulty(0)|spd_rtng(90) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(39 , pierce),imodbits_polearm ], # Was 34p
  1406. #["roman_spear_3", "Cavalry Hasta", [("roman_spear_3",0)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear,
  1407. # 560 , weight(2.8)|difficulty(0)|spd_rtng(90) | weapon_length(177)|swing_damage(0 , blunt) | thrust_damage(38 , pierce),imodbits_polearm ],
  1408. ["roman_banner_test", "Roman Banner", [("roman_banner_test",0),("invalid_item", ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_wooden_parry|itp_next_item_as_melee|itp_merchandise,itc_cutting_spear|itcf_carry_spear,
  1409. 200 , weight(2.5)|difficulty(0)|spd_rtng(85) | weapon_length(135)|swing_damage(15 , blunt) | thrust_damage(24 , pierce),imodbits_axe ],
  1410. ["roman_banner_test_alt", "Roman Banner", [("roman_banner_test",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary|itp_wooden_parry, itc_bastardsword|itcf_carry_axe_back,
  1411. 200 , weight(2.5)|difficulty(0)|spd_rtng(85) | weapon_length(135)|swing_damage(15 , blunt) | thrust_damage(24 , pierce),imodbits_axe ],
  1412. #["roman_banner_test_old", "Roman Banner", [("roman_banner_test",0)], itp_type_polearm|itp_type_polearm|itp_primary|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1413. # 53 , weight(2.0)|difficulty(0)|spd_rtng(90) | weapon_length(135)|swing_damage(15 , blunt) | thrust_damage(24 , pierce),imodbits_polearm ],
  1414.  
  1415. ["short_bow_roman", "Roman Short Bow", [("short_bow",0),("short_bow_carry",ixmesh_carry)], itp_type_bow |itp_merchandise|itp_primary|itp_two_handed ,itcf_shoot_bow|itcf_carry_bow_back,
  1416. 150 , weight(1.5)|difficulty(1)|spd_rtng(97) | shoot_speed(55) | thrust_damage(22 , pierce ),imodbits_bow ],
  1417.  
  1418. ["roman_javelin", "Veretum", [("roman_jav",0),("roman_jav_quiver", ixmesh_carry)], itp_type_thrown |itp_merchandise|itp_primary ,itcf_throw_javelin,
  1419. 600, weight(6.0)|difficulty(1)|spd_rtng(85) | shoot_speed(20) | thrust_damage(30 , pierce)|max_ammo(6)|weapon_length(75),imodbits_thrown ],
  1420. ["roman_pilum_1", "Pilum", [("roman_pilum_1",0)], itp_type_thrown |itp_merchandise|itp_primary|itp_bonus_against_shield ,itcf_throw_javelin,
  1421. 400, weight(4.0)|difficulty(10)|spd_rtng(85) | shoot_speed(20) | thrust_damage(50 , pierce)|max_ammo(2)|weapon_length(75),imodbits_thrown ],
  1422. #["roman_pilum_2", "Pilum", [("roman_pilum_2",0)], itp_type_thrown |itp_merchandise|itp_primary|itp_bonus_against_shield ,itcf_throw_javelin,
  1423. #150, weight(3.2)|difficulty(1)|spd_rtng(94) | shoot_speed(28) | thrust_damage(44 , pierce)|max_ammo(2)|weapon_length(75),imodbits_thrown ],
  1424. ["roman_pilum_3", "Heavy Pilum", [("roman_pilum_3",0)], itp_type_thrown |itp_merchandise|itp_primary|itp_bonus_against_shield ,itcf_throw_javelin,
  1425. 800, weight(6.0)|difficulty(10)|spd_rtng(80) | shoot_speed(18) | thrust_damage(80 , pierce)|max_ammo(2)|weapon_length(75),imodbits_thrown ], ## 70p -> 80p
  1426.  
  1427. ["roman_shield_round", "Parma", [("roman_shield_round",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1428. 200 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield],
  1429. ["solid_red_roman_buckler", "Parma", [("solid_red_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1430. 200 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield],
  1431. ["solid_blue_roman_buckler", "Parma", [("solid_blue_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1432. 200 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield],
  1433. ["solid_brown_roman_buckler", "Parma", [("solid_brown_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1434. 200 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield],
  1435. ["solid_green_roman_buckler", "Parma", [("solid_green_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1436. 200 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield],
  1437. ["solid_red_roman_buckler_lilshitskirm", "Parma", [("solid_red_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1438. 200 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield],
  1439. ["solid_blue_roman_buckler_lilshitskirm", "Parma", [("solid_blue_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1440. 200 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield],
  1441. ["solid_brown_roman_buckler_lilshitskirm", "Parma", [("solid_brown_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1442. 200 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield],
  1443. ["solid_green_roman_buckler_lilshitskirm", "Parma", [("solid_green_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1444. 200 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield],
  1445. #["roman_shield_velite", "Heavy Parma", [("roman_shield_velite",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1446. #400 , weight(2.5)|hit_points(300)|body_armor(6)|spd_rtng(97)|shield_width(50),imodbits_shield],
  1447. #["red_roman_buckler", "Heavy Parma", [("red_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1448. #400 , weight(2.5)|hit_points(300)|body_armor(6)|spd_rtng(97)|shield_width(50),imodbits_shield],
  1449. #["blue_roman_buckler", "Heavy Parma", [("blue_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1450. #400 , weight(2.5)|hit_points(300)|body_armor(6)|spd_rtng(97)|shield_width(50),imodbits_shield],
  1451. #["brown_roman_buckler", "Heavy Parma", [("brown_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1452. #400 , weight(2.5)|hit_points(300)|body_armor(6)|spd_rtng(97)|shield_width(50),imodbits_shield],
  1453. #["green_roman_buckler", "Heavy Parma", [("green_roman_buckler",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_round_shield,
  1454. #400 , weight(2.5)|hit_points(300)|body_armor(6)|spd_rtng(97)|shield_width(50),imodbits_shield],
  1455.  
  1456. ["red_oval_scutum", "Cetratus", [("red_oval_scutum",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1457. 500 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1458. ["blue_oval_scutum", "Cetratus", [("blue_oval_scutum",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1459. 500 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1460. ["brown_oval_scutum", "Cetratus", [("brown_oval_scutum",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1461. 500 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1462. ["green_oval_scutum", "Cetratus", [("green_oval_scutum",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1463. 500 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1464. #["teal_oval_scutum", "Cetratus", [("teal_oval_scutum",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1465. #500 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1466. #["roman_shield_oval", "Cetratus", [("roman_shield_oval",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1467. #500 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1468. ["red_oval_scutum_free", "Cetratus", [("red_oval_scutum",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1469. 500 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1470. ["blue_oval_scutum_free", "Cetratus", [("blue_oval_scutum",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1471. 500 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1472. ["brown_oval_scutum_free", "Cetratus", [("brown_oval_scutum",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1473. 500 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1474. ["green_oval_scutum_free", "Cetratus", [("green_oval_scutum",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1475. 500 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1476. #["teal_oval_scutum_free", "Cetratus", [("teal_oval_scutum",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1477. #0 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1478. #["roman_shield_oval_free", "Cetratus", [("roman_shield_oval",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1479. #0 , weight(3.0)|hit_points(400)|body_armor(10)|spd_rtng(93)|shield_width(42)|shield_height(70),imodbits_shield],
  1480.  
  1481. #["roman_shield_square", "Scutum", [("roman_shield_square",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1482. #0 , weight(6.0)|hit_points(500)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1483. #["red_scutum", "Scutum", [("red_scutum",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1484. #0 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1485. #["blue_scutum", "Scutum", [("blue_scutum",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1486. #0 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1487. #["brown_scutum", "Scutum", [("brown_scutum",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1488. #0 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1489. #["green_scutum", "Scutum", [("green_scutum",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1490. #0 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1491. #["black_scutum", "Scutum", [("black_scutum",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1492. #0 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1493. ["scutum07_r", "Scutum", [("scutum07_R",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1494. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1495. ["scutum01_r", "Scutum", [("scutum01_R",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1496. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1497. ["scutum01_l", "Scutum", [("scutum01_L",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1498. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1499. ["scutum02_r", "Scutum", [("scutum02_R",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1500. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1501. ["scutum02_l", "Scutum", [("scutum02_L",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1502. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1503. ["scutum03_l", "Scutum", [("scutum03_L",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1504. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1505. ["scutum04_r", "Scutum", [("scutum04_R",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1506. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1507. ["scutum05_r", "Scutum", [("scutum05_R",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1508. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1509. ["scutum05_l", "Scutum", [("scutum05_L",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1510. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1511. ["scutum06_r", "Scutum", [("scutum06_R",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1512. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1513. ["scutum03_r", "II-AUG Scutum", [("scutum03_R",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1514. 500, weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1515. ["scutum06_l", "IV-FF Scutum", [("scutum06_L",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1516. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1517. ["scutum04_l", "VI-VIC Scutum", [("scutum04_L",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1518. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1519. ["scutum08_l", "VII-CL Scutum", [("scutum08_L",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1520. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1521. ["scutum07_l", "IX-HIS Scutum", [("scutum07_L",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1522. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1523.  
  1524. ["scutum08_r", "Scutum", [("scutum08_R",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1525. 500 , weight(6.0)|hit_points(450)|body_armor(16)|spd_rtng(80)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1526.  
  1527. ["roman_eagle", "Roman Aquila", [("roman_eagle",0),("roman_eagle", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1528. 2000 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(5 , blunt) | thrust_damage(2 , pierce),imodbits_polearm ],
  1529. ["roman_banner_pole_9", "Roman Banner", [("roman_banner_pole_9",0),("roman_banner_pole_9", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1530. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1531. ["roman_banner_pole_1", "Legio II.AUG", [("roman_banner_pole_1",0),("roman_banner_pole_1", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1532. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1533. ["roman_banner_pole_2", "Legio IV.FF", [("roman_banner_pole_2",0),("roman_banner_pole_2", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1534. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1535. ["roman_banner_pole_3", "Legio IX.HIS", [("roman_banner_pole_3",0),("roman_banner_pole_3", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1536. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1537. ["roman_banner_pole_4", "Legio VI.FER", [("roman_banner_pole_4",0),("roman_banner_pole_4", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1538. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1539. ["roman_banner_pole_5", "Legio VI.VIC", [("roman_banner_pole_5",0),("roman_banner_pole_5", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1540. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1541. ["roman_banner_pole_6", "Legio VII.CLA", [("roman_banner_pole_6",0),("roman_banner_pole_6", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1542. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1543. ["roman_banner_pole_7", "Praetorian Banner", [("roman_banner_pole_7",0),("roman_banner_pole_7", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1544. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1545. ["roman_banner_pole_8", "Praetorian Banner", [("roman_banner_pole_8",0),("roman_banner_pole_8", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1546. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1547. ["roman_silver_signum", "Roman Silver Signum", [("roman_silver_signum",0),("roman_silver_signum", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1548. 1000 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(2 , blunt) | thrust_damage(5 , pierce),imodbits_polearm ],
  1549. ["roman_gold_signum", "Roman Golden Signum", [("roman_gold_signum",0),("roman_gold_signum", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1550. 1000 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(2 , blunt) | thrust_damage(5 , pierce),imodbits_polearm ],
  1551. ["roman_banner_pole_eagle", "SPQR", [("roman_banner_pole_eagle",0),("roman_banner_pole_eagle", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1552. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1553.  
  1554. ###
  1555. #["roman_shield_cav", "Cavalry Scutum", [("roman_shield_cav_2",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1556. #320 , weight(3.5)|hit_points(450)|body_armor(18)|spd_rtng(87)|shield_width(52)|shield_height(70),imodbits_shield ],
  1557. #["roman_shield_early", "Early Scutum", [("roman_shield_early",0)],itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1558. #210 , weight(4.5)|hit_points(430)|body_armor(15)|spd_rtng(81)|shield_width(53)|shield_height(100),imodbits_shield ],
  1559.  
  1560.  
  1561.  
  1562. #Britannic items begin
  1563.  
  1564. #["gallic_helm_1", "Celtic Light Helmet", [("gallic_helm_1",0)], itp_type_head_armor ,0, 150 , weight(1.5)|abundance(100)|head_armor(30)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1565. #["gallic_helm_2", "Celtic War Helmet", [("gallic_helm_2",0)], itp_type_head_armor ,0, 300 , weight(2)|abundance(100)|head_armor(40)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1566. #["gallic_helm_3", "Celtic Noble Helmet", [("gallic_helm_3",0)], itp_type_head_armor ,0, 480 , weight(2.5)|abundance(100)|head_armor(50)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1567.  
  1568. ["brit_coolus_helm", "Celtic Coolus Helmet", [("brit_coolus_helm",0)], itp_type_head_armor ,0, 150 , weight(1.5)|abundance(100)|head_armor(30)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1569. ["brit_mayrick_helm", "Celtic Meyrick Helmet", [("brit_mayrick_helm",0)], itp_type_head_armor ,0, 300 , weight(2)|abundance(100)|head_armor(40)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1570. ["brit_waterloo_helm", "Celtic Waterloo Helmet", [("brit_waterloo_helm",0)], itp_type_head_armor ,0, 480 , weight(2.5)|abundance(100)|head_armor(50)|body_armor(0)|leg_armor(0)|difficulty(7) ,imodbits_plate ],
  1571.  
  1572. ["gallic_pants", "Body Paint", [("gallic_woad",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1573. 123 , weight(0)|abundance(100)|head_armor(0)|body_armor(4)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1574. #New Celtic Woad Paints
  1575. ["tribal_paint_1", "Body Paint", [("tribal_paint_1",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1576. 123 , weight(0)|abundance(100)|head_armor(0)|body_armor(4)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1577. ["tribal_paint_2", "Body Paint", [("tribal_paint_2",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1578. 123 , weight(0)|abundance(100)|head_armor(0)|body_armor(4)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1579. ["tribal_paint_3", "Body Paint", [("tribal_paint_3",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1580. 123 , weight(0)|abundance(100)|head_armor(0)|body_armor(4)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1581. ["tribal_paint_4", "Body Paint", [("tribal_paint_4",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1582. 123 , weight(0)|abundance(100)|head_armor(0)|body_armor(4)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1583. ["tribal_paint_5", "Body Paint", [("tribal_paint_5",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1584. 123 , weight(0)|abundance(100)|head_armor(0)|body_armor(4)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1585.  
  1586. ["heavy_tribal_paint_1", "Woad Paint", [("heavy_tribal_paint_1",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1587. 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(12)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1588. ["heavy_tribal_paint_2", "Woad Paint", [("heavy_tribal_paint_2",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1589. 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(12)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1590. ["heavy_tribal_paint_3", "Woad Paint", [("heavy_tribal_paint_3",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1591. 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(12)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1592. ["heavy_tribal_paint_4", "Woad Paint", [("heavy_tribal_paint_4",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1593. 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(12)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1594. ["heavy_tribal_paint_5", "Woad Paint", [("heavy_tribal_paint_5",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1595. 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(12)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1596.  
  1597. #["celtic_woad_blue_heavy", "Heavy Woad Paint", [("celtic_woad_blue_heavy",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1598. # 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(20)|leg_armor(6)|difficulty(0) ,imodbits_cloth ],
  1599. #["celtic_woad_blue_2_heavy", "Heavy Woad Paint", [("celtic_woad_blue_2_heavy",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1600. # 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(20)|leg_armor(6)|difficulty(0) ,imodbits_cloth ],
  1601. #["celtic_woad_dark_blue_heavy", "Heavy Woad Paint", [("celtic_woad_dark_blue_heavy",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1602. # 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(20)|leg_armor(6)|difficulty(0) ,imodbits_cloth ],
  1603. #["celtic_woad_dark_blue_2_heavy", "Heavy Woad Paint", [("celtic_woad_dark_blue_2_heavy",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1604. # 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(20)|leg_armor(6)|difficulty(0) ,imodbits_cloth ],
  1605.  
  1606. #["briton_woad2", "Woad Paint", [("briton_woad2",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1607. # 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(12)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1608. #["briton_woad3", "Woad Paint", [("briton_woad3",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1609. # 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(12)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1610. #["briton_woad4", "Woad Paint", [("briton_woad4",0)], itp_type_body_armor |itp_civilian |itp_covers_legs ,0,
  1611. # 400 , weight(0)|abundance(100)|head_armor(0)|body_armor(12)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1612.  
  1613. ["gallic_tunic", "Celtic Tunic", [("gallic_tunic",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1614. 60 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1615. #New Celtic Tunics
  1616. ["tribal_tunic_1", "Celtic Tunic", [("tribal_tunic_1",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1617. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1618. ["tribal_tunic_2", "Celtic Tunic", [("tribal_tunic_2",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1619. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1620. ["tribal_tunic_3", "Celtic Tunic", [("tribal_tunic_3",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1621. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1622. ["tribal_tunic_4", "Celtic Tunic", [("tribal_tunic_4",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1623. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1624. ["tribal_tunic_5", "Celtic Tunic", [("tribal_tunic_5",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1625. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1626. ["tribal_tunic_6", "Celtic Tunic", [("tribal_tunic_6",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1627. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1628.  
  1629. ["tribal_tunic_1_free", "Celtic Tunic", [("tribal_tunic_1",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1630. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1631. ["tribal_tunic_2_free", "Celtic Tunic", [("tribal_tunic_2",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1632. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1633. ["tribal_tunic_3_free", "Celtic Tunic", [("tribal_tunic_3",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1634. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1635. ["tribal_tunic_4_free", "Celtic Tunic", [("tribal_tunic_4",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1636. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1637. ["tribal_tunic_5_free", "Celtic Tunic", [("tribal_tunic_5",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1638. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1639. ["tribal_tunic_6_free", "Celtic Tunic", [("tribal_tunic_6",0)], itp_type_body_armor |itp_covers_legs |itp_civilian,0,
  1640. 100 , weight(1)|abundance(100)|head_armor(0)|body_armor(8)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1641.  
  1642. ["gallic_armor_3", "Celtic Mail", [("gallic_armor_3",0)], itp_type_body_armor |itp_covers_legs ,0,
  1643. 567 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1644. #New Celtic Mail
  1645. ["brit_mail_1", "Celtic Mail", [("brit_mail_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1646. 567 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1647. ["brit_mail_2", "Celtic Mail", [("brit_mail_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1648. 567 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1649. ["brit_mail_3", "Celtic Mail", [("brit_mail_3",0)], itp_type_body_armor |itp_covers_legs ,0,
  1650. 567 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1651. ["brit_mail_4", "Celtic Mail", [("brit_mail_4",0)], itp_type_body_armor |itp_covers_legs ,0,
  1652. 567 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1653. ["brit_mail_5", "Celtic Mail", [("brit_mail_5",0)], itp_type_body_armor |itp_covers_legs ,0,
  1654. 567 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1655. ["brit_mail_6", "Celtic Mail", [("brit_mail_6",0)], itp_type_body_armor |itp_covers_legs ,0,
  1656. 567 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1657.  
  1658. ["gallic_armor_3_priced", "Celtic Mail", [("gallic_armor_3",0)], itp_type_body_armor |itp_covers_legs ,0,
  1659. 500 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1660. #New Celtic Mail
  1661. ["brit_mail_1_priced", "Celtic Mail", [("brit_mail_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1662. 500 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1663. ["brit_mail_2_priced", "Celtic Mail", [("brit_mail_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1664. 500 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1665. ["brit_mail_3_priced", "Celtic Mail", [("brit_mail_3",0)], itp_type_body_armor |itp_covers_legs ,0,
  1666. 500 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1667. ["brit_mail_4_priced", "Celtic Mail", [("brit_mail_4",0)], itp_type_body_armor |itp_covers_legs ,0,
  1668. 500 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1669. ["brit_mail_5_priced", "Celtic Mail", [("brit_mail_5",0)], itp_type_body_armor |itp_covers_legs ,0,
  1670. 500 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1671. ["brit_mail_6_priced", "Celtic Mail", [("brit_mail_6",0)], itp_type_body_armor |itp_covers_legs ,0,
  1672. 500 , weight(16)|abundance(100)|head_armor(0)|body_armor(34)|leg_armor(6)|difficulty(7) ,imodbits_armor ], ## Was 26 body armor, now 45(39) body armor
  1673.  
  1674. ["gallic_armor", "Celtic Heavy Mail", [("gallic_armor",0)], itp_type_body_armor |itp_covers_legs ,0,
  1675. 1200 , weight(18)|abundance(100)|head_armor(0)|body_armor(44)|leg_armor(8)|difficulty(0) ,imodbits_armor ], ## Was 38 body armor, 10 leg armor now 40 body armor, 12 leg armor
  1676. #New Celtic Heavy Mail
  1677. ["brit_heavy_mail_1", "Celtic Heavy Mail", [("brit_heavy_mail_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1678. 1200 , weight(18)|abundance(100)|head_armor(0)|body_armor(44)|leg_armor(8)|difficulty(0) ,imodbits_armor ], ## Was 38 body armor, 10 leg armor now 40 body armor, 12 leg armor
  1679. ["brit_heavy_mail_2", "Celtic Heavy Mail", [("brit_heavy_mail_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1680. 1200 , weight(18)|abundance(100)|head_armor(0)|body_armor(44)|leg_armor(8)|difficulty(0) ,imodbits_armor ], ## Was 38 body armor, 10 leg armor now 40 body armor, 12 leg armor
  1681. ["brit_heavy_mail_3", "Celtic Heavy Mail", [("brit_heavy_mail_3",0)], itp_type_body_armor |itp_covers_legs ,0,
  1682. 1200 , weight(18)|abundance(100)|head_armor(0)|body_armor(44)|leg_armor(8)|difficulty(0) ,imodbits_armor ], ## Was 38 body armor, 10 leg armor now 40 body armor, 12 leg armor
  1683. ["brit_heavy_mail_4", "Celtic Heavy Mail", [("brit_heavy_mail_4",0)], itp_type_body_armor |itp_covers_legs ,0,
  1684. 1200 , weight(18)|abundance(100)|head_armor(0)|body_armor(44)|leg_armor(8)|difficulty(0) ,imodbits_armor ], ## Was 38 body armor, 10 leg armor now 40 body armor, 12 leg armor
  1685. ["brit_heavy_mail_5", "Celtic Heavy Mail", [("brit_heavy_mail_5",0)], itp_type_body_armor |itp_covers_legs ,0,
  1686. 1200 , weight(18)|abundance(100)|head_armor(0)|body_armor(44)|leg_armor(8)|difficulty(0) ,imodbits_armor ], ## Was 38 body armor, 10 leg armor now 40 body armor, 12 leg armor
  1687. ["brit_heavy_mail_6", "Celtic Heavy Mail", [("brit_heavy_mail_6",0)], itp_type_body_armor |itp_covers_legs ,0,
  1688. 1200 , weight(18)|abundance(100)|head_armor(0)|body_armor(44)|leg_armor(8)|difficulty(0) ,imodbits_armor ], ## Was 38 body armor, 10 leg armor now 40 body armor, 12 leg armor
  1689.  
  1690. ["gallic_armor_2", "Celtic Noble Mail", [("gallic_armor_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1691. 2000 , weight(20)|abundance(100)|head_armor(0)|body_armor(54)|leg_armor(10)|difficulty(0) ,imodbits_armor ], ## Left as is
  1692. #New Celtic Noble Mail
  1693. ["brit_noble_mail_1", "Celtic Noble Mail", [("brit_noble_mail_1",0)], itp_type_body_armor |itp_covers_legs ,0,
  1694. 2000 , weight(20)|abundance(100)|head_armor(0)|body_armor(54)|leg_armor(10)|difficulty(0) ,imodbits_armor ], ## Left as is
  1695. ["brit_noble_mail_2", "Celtic Noble Mail", [("brit_noble_mail_2",0)], itp_type_body_armor |itp_covers_legs ,0,
  1696. 2000 , weight(20)|abundance(100)|head_armor(0)|body_armor(54)|leg_armor(10)|difficulty(0) ,imodbits_armor ], ## Left as is
  1697. ["brit_noble_mail_3", "Celtic Noble Mail", [("brit_noble_mail_3",0)], itp_type_body_armor |itp_covers_legs ,0,
  1698. 2000 , weight(20)|abundance(100)|head_armor(0)|body_armor(54)|leg_armor(10)|difficulty(0) ,imodbits_armor ], ## Left as is
  1699. ["brit_noble_mail_4", "Celtic Noble Mail", [("brit_noble_mail_4",0)], itp_type_body_armor |itp_covers_legs ,0,
  1700. 2000 , weight(20)|abundance(100)|head_armor(0)|body_armor(54)|leg_armor(10)|difficulty(0) ,imodbits_armor ], ## Left as is
  1701. ["brit_noble_mail_5", "Celtic Noble Mail", [("brit_noble_mail_5",0)], itp_type_body_armor |itp_covers_legs ,0,
  1702. 2000 , weight(20)|abundance(100)|head_armor(0)|body_armor(54)|leg_armor(10)|difficulty(0) ,imodbits_armor ], ## Left as is
  1703. ["brit_noble_mail_6", "Celtic Noble Mail", [("brit_noble_mail_6",0)], itp_type_body_armor |itp_covers_legs ,0,
  1704. 2000 , weight(20)|abundance(100)|head_armor(0)|body_armor(54)|leg_armor(10)|difficulty(0) ,imodbits_armor ], ## Left as is
  1705.  
  1706. ["gallic_boots", "Leggings", [("gallic_boots",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1707. 100 , weight(1.5)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1708. #["briton_boots", "Briton Leggings", [("briton_boots",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1709. # 0 , weight(1.25)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(8)|difficulty(0) ,imodbits_cloth ],
  1710. ["gallic_boots_2", "Thickened Leggings", [("gallic_boots_2",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1711. 200 , weight(2.0)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(8)|difficulty(0) ,imodbits_cloth ],
  1712. ["tribal_pants_1", "Leggings", [("tribal_pants_1",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1713. 100 , weight(1.5)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1714. ["tribal_pants_2", "Leggings", [("tribal_pants_2",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1715. 100 , weight(1.5)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1716. ["tribal_pants_3", "Leggings", [("tribal_pants_3",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1717. 100 , weight(1.5)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1718. ["tribal_pants_4", "Leggings", [("tribal_pants_4",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1719. 100 , weight(1.5)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1720. ["tribal_pants_5", "Leggings", [("tribal_pants_5",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1721. 100 , weight(1.5)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1722. ["tribal_pants_6", "Leggings", [("tribal_pants_6",0)], itp_type_foot_armor |itp_civilian | itp_attach_armature,0,
  1723. 100 , weight(1.5)|abundance(100)|head_armor(0)|body_armor(0)|leg_armor(4)|difficulty(0) ,imodbits_cloth ],
  1724.  
  1725. #["saddle_horse_celtic","Celtic Horse", [("saddle_horse",0),("horse_c",imodbits_horse_good)], itp_merchandise|itp_type_horse, 0, 400,abundance(90)|hit_points(100)|body_armor(12)|difficulty(1)|horse_speed(45)|horse_maneuver(48)|horse_charge(40)|horse_scale(104),imodbits_horse_basic],
  1726. #["gallic_horse_1","Celtic Pony", [("gallic_horse_1",0),("horse_c",imodbits_horse_good)], itp_merchandise|itp_type_horse, 0, 240,abundance(90)|hit_points(100)|body_armor(10)|difficulty(3)|horse_speed(45)|horse_maneuver(48)|horse_charge(30)|horse_scale(104),imodbits_horse_basic],
  1727. #["gallic_horse_3","Celtic Courser", [("gallic_horse_3",0),("hunting_horse",imodbits_horse_good)], itp_merchandise|itp_type_horse, 0, 600,abundance(90)|body_armor(8)|hit_points(90)|difficulty(3)|horse_speed(50)|horse_maneuver(46)|horse_charge(50)|horse_scale(106),imodbits_horse_basic|imodbit_champion],
  1728. #["gallic_horse_2","Celtic Charger", [("gallic_horse_2",0)], itp_merchandise|itp_type_horse, 0, 600,abundance(90)|hit_points(110)|body_armor(16)|difficulty(3)|horse_speed(40)|horse_maneuver(50)|horse_charge(60)|horse_scale(108),imodbits_horse_basic|imodbit_champion],
  1729.  
  1730. #["gallic_short_weapon_2", "Sica", [("gallic_short_weapon_2",0)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
  1731. #0 , weight(1.5)|difficulty(0)|spd_rtng(98) | weapon_length(60)|swing_damage(22 , cut) | thrust_damage(0 , pierce),imodbits_sword ],
  1732.  
  1733. ["gallic_sword_1", "Celtic Short Sword", [("gallic_sword_1",0),("gallic_sword_scabbard_1", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1734. 280 , weight(2.0)|difficulty(0)|spd_rtng(93) | weapon_length(71)|swing_damage(24 , cut) | thrust_damage(24 , pierce),imodbits_sword_high ], # Was 92 weapon length
  1735. ["gallic_sword_2", "Celtic Long Sword", [("gallic_sword_2",0),("gallic_sword_scabbard_2", ixmesh_carry),("sword_rusty_a",imodbit_rusty),("sword_rusty_a_scabbard", ixmesh_carry|imodbit_rusty)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1736. 420 , weight(2.3)|difficulty(0)|spd_rtng(91) | weapon_length(95)|swing_damage(28 , cut) | thrust_damage(26 , pierce),imodbits_sword_high ], ## Was 28c, 20p now 30(33)c, 30p
  1737. ["gallic_sword_3", "Celtic Noble Sword", [("gallic_sword_3",0),("gallic_sword_scabbard_3", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1738. 840 , weight(2.5)|difficulty(0)|spd_rtng(87) | weapon_length(97)|swing_damage(32 , cut) | thrust_damage(28 , pierce),imodbits_sword_high ], ## Was 38c, 25p now 33(36)c, 29p speed 87 -> 85 -> 83
  1739.  
  1740. #New Celtic Weapons
  1741. ["celtic_short_sword", "Celtic Short Sword", [("celtic_short_sword",0),("gallic_sword_scabbard_1", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1742. 1260 , weight(2.0)|difficulty(0)|spd_rtng(96) | weapon_length(73)|swing_damage(25 , cut) | thrust_damage(18 , pierce),imodbits_sword_high ],
  1743. #["briton_spatha", "Briton Spatha", [("briton_spatha",0),("briton_spatha_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1744. # 0 , weight(2.0)|difficulty(0)|spd_rtng(97) | weapon_length(92)|swing_damage(25 , cut) | thrust_damage(18 , pierce),imodbits_sword_high ],
  1745. #["briton_spatha_2", "Briton War Spatha", [("briton_spatha_2",0),("briton_spatha_2_scabbard", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1746. # 1280 , weight(2.3)|difficulty(0)|spd_rtng(95) | weapon_length(95)|swing_damage(28 , cut) | thrust_damage(20 , pierce),imodbits_sword_high ],
  1747. ["celtic_chieftains_spatha", "Chieftain's Spatha", [("celtic_chieftains_spatha",0),("gallic_sword_scabbard_3", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1748. 2420 , weight(2.5)|difficulty(0)|spd_rtng(91) | weapon_length(97)|swing_damage(35 , cut) | thrust_damage(25 , pierce),imodbits_sword_high ],
  1749.  
  1750. ["celtic_champions_sword", "Celtic War Sword", [("celtic_champions_sword",0),("celtic_champions_sword", ixmesh_carry)], itp_type_two_handed_wpn|itp_two_handed|itp_primary, itc_greatsword|itcf_carry_sword_back,
  1751. 1560 , weight(3.5)|difficulty(16)|spd_rtng(80) | weapon_length(94)|swing_damage(40 , cut) | thrust_damage(32 , pierce),imodbits_sword_high ], # Was 34c, 25p
  1752. ["celtic_champions_sword_2", "Celtic Champion's Sword", [("celtic_champions_sword_2",0),("celtic_champions_sword_2", ixmesh_carry)], itp_type_two_handed_wpn|itp_two_handed|itp_primary, itc_greatsword|itcf_carry_sword_back,
  1753. 2800 , weight(4.0)|difficulty(16)|spd_rtng(75) | weapon_length(113)|swing_damage(44 , cut) | thrust_damage(36 , pierce),imodbits_sword_high ], # Was 42c, 30p
  1754.  
  1755. ["celtic_socket_axe", "Celtic Socket Axe", [("celtic_socket_axe",0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
  1756. 85 , weight(1.3)|difficulty(9)|spd_rtng(99) | weapon_length(70)|swing_damage(32 , cut) | thrust_damage(0 , pierce),imodbits_axe ],
  1757. # New Brit axes
  1758. ["brit_hatchet", "Britannic Hatchet", [("brit_hatchet",0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
  1759. 280 , weight(1.5)|difficulty(0)|spd_rtng(90) | weapon_length(70)|swing_damage(26 , cut) | thrust_damage(0 , pierce),imodbits_axe ],
  1760. ["brit_handaxe", "Britannic Hand Axe", [("brit_handaxe",0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
  1761. 480 , weight(2.0)|difficulty(9)|spd_rtng(87) | weapon_length(70)|swing_damage(30 , cut) | thrust_damage(0 , pierce),imodbits_axe ],
  1762. #["gallic_axe_1", "Gallic Hand Axe", [("gallic_axe_1",0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
  1763. # 85 , weight(1.3)|difficulty(9)|spd_rtng(99) | weapon_length(70)|swing_damage(32 , cut) | thrust_damage(0 , pierce),imodbits_axe ],
  1764. #["gallic_axe_2", "Gallic War Axe", [("gallic_axe_2",0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
  1765. # 132 , weight(1.4)|difficulty(9)|spd_rtng(98) | weapon_length(70)|swing_damage(34 , cut) | thrust_damage(0 , pierce),imodbits_axe ],
  1766. #["gallic_axe_3", "Dolabra", [("gallic_axe_3",0)], itp_type_one_handed_wpn|itp_primary|itp_secondary|itp_bonus_against_shield|itp_wooden_parry, itc_scimitar|itcf_carry_axe_left_hip,
  1767. # 190 , weight(1.5)|difficulty(9)|spd_rtng(98) | weapon_length(71)|swing_damage(35 , cut) | thrust_damage(0 , pierce),imodbits_axe ],
  1768.  
  1769. #["gallic_short_weapon_1", "Hand Flax", [("gallic_short_weapon_1",0)], itp_type_one_handed_wpn|itp_merchandise|itp_primary|itp_secondary|itp_no_parry|itp_wooden_parry, itc_cleaver|itcf_carry_sword_left_hip,
  1770. #9 , weight(1.1)|difficulty(0)|spd_rtng(101) | weapon_length(57)|swing_damage(23 , cut) | thrust_damage(0 , pierce),imodbits_none ],
  1771.  
  1772. #["gallic_falx_1", "Flax", [("gallic_falx_1",0)], itp_type_polearm|itp_two_handed|itp_primary|itp_bonus_against_shield|itp_wooden_parry|itp_next_item_as_melee|itp_merchandise,itc_staff|itcf_carry_axe_back,
  1773. # 190 , weight(2.5)|difficulty(10)|spd_rtng(98) | weapon_length(102)|swing_damage(42 , cut) | thrust_damage(19 , pierce),imodbits_axe ],
  1774. #["gallic_falx_1", "Falx", [("gallic_falx_1",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,
  1775. # 190 , weight(2.5)|difficulty(10)|spd_rtng(93) | weapon_length(102)|swing_damage(42 , cut) | thrust_damage(0 , pierce),imodbits_axe ],
  1776. #["gallic_falx_2", "War Falx", [("gallic_falx_2",0)], itp_type_polearm| itp_two_handed|itp_primary|itp_bonus_against_shield|itp_wooden_parry|itp_next_item_as_melee|itp_merchandise, itc_staff|itcf_carry_axe_back,
  1777. # 310 , weight(3.5)|difficulty(10)|spd_rtng(96) | weapon_length(103)|swing_damage(50 , cut) | thrust_damage(18 , pierce),imodbits_axe ],
  1778. #["gallic_falx_2", "War Falx", [("gallic_falx_2",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,
  1779. # 310 , weight(3.5)|difficulty(10)|spd_rtng(91) | weapon_length(103)|swing_damage(50 , cut) | thrust_damage(0 , pierce),imodbits_axe ],
  1780. #["gallic_falx_3", "Great Falx", [("gallic_falx_3",0)], itp_type_polearm| itp_two_handed|itp_primary|itp_bonus_against_shield|itp_wooden_parry|itp_next_item_as_melee|itp_merchandise, itc_staff|itcf_carry_axe_back,
  1781. # 560 , weight(4.5)|difficulty(10)|spd_rtng(94) | weapon_length(105)|swing_damage(54 , cut) | thrust_damage(19 , blunt),imodbits_axe ],
  1782. #["gallic_falx_3", "Great Falx", [("gallic_falx_3",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,
  1783. # 560 , weight(4.5)|difficulty(10)|spd_rtng(89) | weapon_length(105)|swing_damage(54 , cut) | thrust_damage(0 , pierce),imodbits_axe ],
  1784.  
  1785. ["gallic_spear_2", "Celtic Short Spear", [("gallic_spear_2",0),("gallic_spear_2", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1786. 100 , weight(2.0)|difficulty(0)|spd_rtng(95) | weapon_length(132)|swing_damage(0 , blunt) | thrust_damage(33 , pierce),imodbits_polearm ], # Was 28p
  1787. ["gallic_spear_3", "Celtic Spear", [("gallic_spear_3",0),("gallic_spear_3", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_wooden_parry, itc_cutting_spear,
  1788. 520 , weight(2.5)|difficulty(0)|spd_rtng(90) | weapon_length(156)|swing_damage(0 , blunt) | thrust_damage(39 , pierce),imodbits_polearm ], # Was 34p
  1789. #["gallic_spear_4", "Celtic Cavalry Lance", [("gallic_spear_4",0)], itp_couchable|itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear,
  1790. # 560 , weight(2.8)|difficulty(0)|spd_rtng(90) | weapon_length(177)|swing_damage(0 , blunt) | thrust_damage(38 , pierce),imodbits_polearm ],
  1791.  
  1792. ["short_bow_celtic", "Celtic Short Bow", [("short_bow",0),("short_bow_carry", ixmesh_carry)], itp_type_bow |itp_merchandise|itp_primary|itp_two_handed ,itcf_shoot_bow|itcf_carry_bow_back,
  1793. 300 , weight(1.5)|difficulty(1)|spd_rtng(97) | shoot_speed(55) | thrust_damage(22 , pierce ),imodbits_bow ],
  1794.  
  1795. # ["gallic_spear_1_old", "Gaesum", [("gallic_spear_1_old",0)], itp_type_thrown |itp_merchandise|itp_primary|itp_bonus_against_shield ,itcf_throw_javelin,
  1796. # 120, weight(3)|difficulty(1)|spd_rtng(94) | shoot_speed(28) | thrust_damage(46 , pierce)|max_ammo(3)|weapon_length(121),imodbits_thrown ],
  1797. # ["gallic_spear_1_old_melee", "Gaesum", [("gallic_spear_1_old",0)], itp_type_polearm|itp_primary|itp_wooden_parry , itc_staff,
  1798. # 120, weight(1)|difficulty(0)|spd_rtng(100) |swing_damage(12, blunt)| thrust_damage(25, pierce)|weapon_length(121),imodbits_polearm ],
  1799.  
  1800. ["gallic_spear_1", "Throwing Spear", [("gallic_spear_1",0),("gallic_spear_1", ixmesh_carry)], itp_type_thrown |itp_merchandise|itp_primary ,itcf_throw_javelin,
  1801. 600, weight(6)|difficulty(1)|spd_rtng(85) | shoot_speed(20) | thrust_damage(30 , pierce)|max_ammo(6)|weapon_length(75),imodbits_thrown ],
  1802. ["gallic_spear_1_med", "Gaesum", [("gaesum_med",0)], itp_type_thrown |itp_merchandise|itp_primary|itp_bonus_against_shield ,itcf_throw_javelin,
  1803. 400, weight(4)|difficulty(10)|spd_rtng(94) | shoot_speed(28) | thrust_damage(50 , pierce)|max_ammo(2)|weapon_length(75),imodbits_thrown ],
  1804. ["gallic_spear_1_heavy", "Heavy Gaesum", [("gaesum_heavy",0)], itp_type_thrown |itp_merchandise|itp_primary|itp_bonus_against_shield ,itcf_throw_javelin,
  1805. 800, weight(6)|difficulty(10)|spd_rtng(80) | shoot_speed(18) | thrust_damage(80 , pierce)|max_ammo(2)|weapon_length(75),imodbits_thrown ], ## 70p -> 80p
  1806. #["gallic_spear_1_old2_melee", "Gaesum", [("gallic_spear_1_old",0)], itp_type_polearm|itp_primary|itp_wooden_parry , itc_staff,
  1807. #120, weight(1)|difficulty(0)|spd_rtng(100) |swing_damage(0, cut)| thrust_damage(25, pierce)|weapon_length(75),imodbits_polearm ],
  1808.  
  1809. #Test Throwing Head
  1810. ["throwing_head", "Head", [("throwing_head",0),("throwing_head", ixmesh_carry)], itp_type_thrown |itp_merchandise|itp_primary ,itcf_throw_javelin|itcf_carry_quiver_right_vertical,
  1811. 100 , weight(4)|difficulty(1)|spd_rtng(80) | shoot_speed(28) | thrust_damage(15 , pierce)|max_ammo(3)|weapon_length(32),imodbits_thrown ],
  1812.  
  1813. ["horse_aquila", "Britannic Aquila", [("horse_aquila",0),("horse_aquila", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1814. 2000 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(5 , blunt) | thrust_damage(2 , pierce),imodbits_polearm ],
  1815. ["brit_banner_1", "Britannic Banner", [("brit_banner_1",0),("brit_banner_1", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1816. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1817. ["brit_banner_2", "Britannic Banner", [("brit_banner_2",0),("brit_banner_2", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1818. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1819. ["brit_banner_3", "Britannic Banner", [("brit_banner_3",0),("brit_banner_3", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1820. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1821. ["brit_banner_4", "Britannic Banner", [("brit_banner_4",0),("brit_banner_4", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1822. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1823. ["brit_banner_5", "Britannic Banner", [("brit_banner_5",0),("brit_banner_5", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1824. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1825. ["brit_banner_6", "Britannic Banner", [("brit_banner_6",0),("brit_banner_6", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1826. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1827. ["brit_banner_7", "Britannic Banner", [("brit_banner_7",0),("brit_banner_7", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1828. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1829. ["brit_banner_8", "Britannic Banner", [("brit_banner_8",0),("brit_banner_8", ixmesh_carry)], itp_type_polearm|itp_offset_lance|itp_primary|itp_penalty_with_shield|itp_wooden_parry, itc_cutting_spear|itcf_carry_spear,
  1830. 500 , weight(2.5)|difficulty(0)|spd_rtng(70) | weapon_length(135)|swing_damage(0 , blunt) | thrust_damage(10 , pierce),imodbits_polearm ],
  1831.  
  1832. ["gallic_shield_1", "Celtic Buckler", [("gallic_shield_1",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield, 400 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield ],
  1833. #New Celtic Bucklers
  1834. ["celtic_shield_1_brown", "Celtic Buckler", [("celtic_shield_1_brown",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield, 0 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield ],
  1835. ["celtic_shield_1_dark_blue", "Celtic Buckler", [("celtic_shield_1_dark_blue",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield, 0 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield ],
  1836. ["celtic_shield_1_green", "Celtic Buckler", [("celtic_shield_1_green",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield, 0 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield ],
  1837. ["celtic_shield_1_gray", "Celtic Buckler", [("celtic_shield_1_gray",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield, 0 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield ],
  1838.  
  1839. ["celtic_shield_1_brown_lilshitskirm", "Celtic Buckler", [("celtic_shield_1_brown",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield, 400 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield ],
  1840. ["celtic_shield_1_dark_blue_lilshitskirm", "Celtic Buckler", [("celtic_shield_1_dark_blue",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield, 400 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield ],
  1841. ["celtic_shield_1_green_lilshitskirm", "Celtic Buckler", [("celtic_shield_1_green",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield, 400 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield ],
  1842. ["celtic_shield_1_gray_lilshitskirm", "Celtic Buckler", [("celtic_shield_1_gray",0)], itp_type_shield|itp_wooden_parry, itcf_carry_round_shield, 400 , weight(2.0)|hit_points(200)|body_armor(4)|spd_rtng(99)|shield_width(40),imodbits_shield ],
  1843.  
  1844. ["gallic_shield_2", "Celtic Long Shield", [("gallic_shield_2",0)],itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_board_shield,
  1845. 300 , weight(2.8)|hit_points(350)|body_armor(8)|spd_rtng(95)|shield_width(40)|shield_height(100),imodbits_shield ],
  1846. #New Celtic Long Shields
  1847. ["celtic_shield_2_blue", "Celtic Long Shield", [("celtic_shield_2_blue",0)],itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_board_shield,
  1848. 300 , weight(2.8)|hit_points(350)|body_armor(8)|spd_rtng(95)|shield_width(40)|shield_height(100),imodbits_shield ],
  1849. ["celtic_shield_2_brown", "Celtic Long Shield", [("celtic_shield_2_brown",0)],itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_board_shield,
  1850. 300 , weight(2.8)|hit_points(350)|body_armor(8)|spd_rtng(95)|shield_width(40)|shield_height(100),imodbits_shield ],
  1851. ["celtic_shield_2_gray", "Celtic Long Shield", [("celtic_shield_2_gray",0)],itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_board_shield,
  1852. 300 , weight(2.8)|hit_points(350)|body_armor(8)|spd_rtng(95)|shield_width(40)|shield_height(100),imodbits_shield ],
  1853. ["celtic_shield_2_green", "Celtic Long Shield", [("celtic_shield_2_green",0)],itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_board_shield,
  1854. 300 , weight(2.8)|hit_points(350)|body_armor(8)|spd_rtng(95)|shield_width(40)|shield_height(100),imodbits_shield ],
  1855.  
  1856. ["celtic_shield_2_blue_free", "Celtic Long Shield", [("celtic_shield_2_blue",0)],itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_board_shield,
  1857. 300 , weight(2.8)|hit_points(350)|body_armor(8)|spd_rtng(95)|shield_width(40)|shield_height(100),imodbits_shield ],
  1858. ["celtic_shield_2_brown_free", "Celtic Long Shield", [("celtic_shield_2_brown",0)],itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_board_shield,
  1859. 300 , weight(2.8)|hit_points(350)|body_armor(8)|spd_rtng(95)|shield_width(40)|shield_height(100),imodbits_shield ],
  1860. ["celtic_shield_2_gray_free", "Celtic Long Shield", [("celtic_shield_2_gray",0)],itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_board_shield,
  1861. 300 , weight(2.8)|hit_points(350)|body_armor(8)|spd_rtng(95)|shield_width(40)|shield_height(100),imodbits_shield ],
  1862. ["celtic_shield_2_green_free", "Celtic Long Shield", [("celtic_shield_2_green",0)],itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_board_shield,
  1863. 300 , weight(2.8)|hit_points(350)|body_armor(8)|spd_rtng(95)|shield_width(40)|shield_height(100),imodbits_shield ],
  1864.  
  1865. #["gallic_shield_3", "Celtic Oval Shield", [("gallic_shield_3",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1866. #500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1867. #New Celtic Oval Shields
  1868. #["celtic_shield_3_blue", "Celtic Oval Shield", [("celtic_shield_3_blue",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1869. #500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1870. #["celtic_shield_3_brown", "Celtic Oval Shield", [("celtic_shield_3_brown",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1871. #500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1872. #["celtic_shield_3_dark_blue", "Celtic Oval Shield", [("celtic_shield_3_dark_blue",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1873. #500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1874. #["celtic_shield_3_dark_green", "Celtic Oval Shield", [("celtic_shield_3_dark_green",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1875. #500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1876. #["celtic_shield_3_gray", "Celtic Oval Shield", [("celtic_shield_3_gray",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1877. #500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1878.  
  1879. #["celtic_shield_3_blue_free", "Celtic Oval Shield", [("celtic_shield_3_blue",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1880. #0 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1881. #["celtic_shield_3_brown_free", "Celtic Oval Shield", [("celtic_shield_3_brown",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1882. #0 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1883. #["celtic_shield_3_dark_blue_free", "Celtic Oval Shield", [("celtic_shield_3_dark_blue",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1884. #0 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1885. #["celtic_shield_3_dark_green_free", "Celtic Oval Shield", [("celtic_shield_3_dark_green",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1886. #0 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1887. #["celtic_shield_3_gray_free", "Celtic Oval Shield", [("celtic_shield_3_gray",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1888. #0 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1889.  
  1890. ["celtic_oval_shield_01a", "Celtic Oval Shield", [("celtic_oval_shield_01a",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1891. 500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1892. ["celtic_oval_shield_01b", "Celtic Oval Shield", [("celtic_oval_shield_01b",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1893. 500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1894. ["celtic_oval_shield_01c", "Celtic Oval Shield", [("celtic_oval_shield_01c",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1895. 500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1896. ["celtic_oval_shield_02a", "Celtic Oval Shield", [("celtic_oval_shield_02a",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1897. 500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1898. ["celtic_oval_shield_02b", "Celtic Oval Shield", [("celtic_oval_shield_02b",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1899. 500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1900. ["celtic_oval_shield_02c", "Celtic Oval Shield", [("celtic_oval_shield_02c",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1901. 500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1902. ["celtic_oval_shield_03a", "Celtic Oval Shield", [("celtic_oval_shield_03a",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1903. 500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1904. ["celtic_oval_shield_03b", "Celtic Oval Shield", [("celtic_oval_shield_03b",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1905. 500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1906. ["celtic_oval_shield_03c", "Celtic Oval Shield", [("celtic_oval_shield_03c",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1907. 500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1908. ["celtic_oval_shield_04a", "Celtic Oval Shield", [("celtic_oval_shield_04a",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1909. 500 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1910.  
  1911. ["celtic_oval_shield_01a_free", "Celtic Oval Shield", [("celtic_oval_shield_01a",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1912. 300 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1913. ["celtic_oval_shield_01b_free", "Celtic Oval Shield", [("celtic_oval_shield_01b",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1914. 300 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1915. ["celtic_oval_shield_01c_free", "Celtic Oval Shield", [("celtic_oval_shield_01c",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1916. 300 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1917. ["celtic_oval_shield_02a_free", "Celtic Oval Shield", [("celtic_oval_shield_02a",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1918. 300 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1919. ["celtic_oval_shield_02b_free", "Celtic Oval Shield", [("celtic_oval_shield_02b",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1920. 300 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1921. ["celtic_oval_shield_02c_free", "Celtic Oval Shield", [("celtic_oval_shield_02c",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1922. 300 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1923. ["celtic_oval_shield_03a_free", "Celtic Oval Shield", [("celtic_oval_shield_03a",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1924. 300 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1925. ["celtic_oval_shield_03b_free", "Celtic Oval Shield", [("celtic_oval_shield_03b",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1926. 300 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1927. ["celtic_oval_shield_03c_free", "Celtic Oval Shield", [("celtic_oval_shield_03c",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1928. 300 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1929. ["celtic_oval_shield_04a_free", "Celtic Oval Shield", [("celtic_oval_shield_04a",0)], itp_merchandise|itp_type_shield|itp_wooden_parry, itcf_carry_kite_shield,
  1930. 300 , weight(3.5)|hit_points(400)|body_armor(12)|spd_rtng(90)|shield_width(55)|shield_height(70),imodbits_shield], ## Was 320 HP now 190 HP
  1931.  
  1932. #["gallic_shield_4", "Celtic Heavy Shield", [("gallic_shield_4",0)],itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1933. #800 , weight(8)|hit_points(450)|body_armor(14)|spd_rtng(75)|shield_width(75)|shield_height(95),imodbits_shield ], ## Was 450 HP now 230 HP
  1934. #New Celtic Heavy Shields
  1935. #["celtic_shield_4_blue", "Celtic Heavy Shield", [("celtic_shield_4_blue",0)],itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1936. #800 , weight(8)|hit_points(450)|body_armor(14)|spd_rtng(75)|shield_width(75)|shield_height(95),imodbits_shield ], ## Was 450 HP now 230 HP
  1937. #["celtic_shield_4_brown", "Celtic Heavy Shield", [("celtic_shield_4_brown",0)],itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1938. #800 , weight(8)|hit_points(450)|body_armor(14)|spd_rtng(75)|shield_width(75)|shield_height(95),imodbits_shield ], ## Was 450 HP now 230 HP
  1939. #["celtic_shield_4_dark_blue", "Celtic Heavy Shield", [("celtic_shield_4_dark_blue",0)],itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1940. #800 , weight(8)|hit_points(450)|body_armor(14)|spd_rtng(75)|shield_width(75)|shield_height(95),imodbits_shield ], ## Was 450 HP now 230 HP
  1941. #["celtic_shield_4_gray", "Celtic Heavy Shield", [("celtic_shield_4_gray",0)],itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1942. #800 , weight(8)|hit_points(450)|body_armor(14)|spd_rtng(75)|shield_width(75)|shield_height(95),imodbits_shield ], ## Was 450 HP now 230 HP
  1943. #["brit_war_scutum_1", "Briton Scutum", [("brit_war_scutum_1",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1944. #600 , weight(6.0)|hit_points(450)|body_armor(14)|spd_rtng(70)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1945. #["brit_war_scutum_2", "Briton Scutum", [("brit_war_scutum_2",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1946. #600 , weight(6.0)|hit_points(450)|body_armor(14)|spd_rtng(70)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1947. #["brit_war_scutum_3", "Briton Scutum", [("brit_war_scutum_3",0)], itp_merchandise|itp_type_shield|itp_cant_use_on_horseback|itp_wooden_parry, itcf_carry_board_shield,
  1948. #600 , weight(6.0)|hit_points(450)|body_armor(14)|spd_rtng(70)|shield_width(60)|shield_height(70),imodbits_shield ], ## Was 450 HP now
  1949.  
  1950. #Dacian Items
  1951.  
  1952. ["dacian_sica", "Sica", [("gallic_short_weapon_2",0)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_scimitar|itcf_carry_sword_left_hip,
  1953. 300 , weight(1.5)|difficulty(0)|spd_rtng(98) | weapon_length(60)|swing_damage(22 , cut) | thrust_damage(0 , pierce),imodbits_sword],
  1954. ["dacian_hand_falx", "Hand Falx", [("gallic_short_weapon_1",0)], itp_type_one_handed_wpn|itp_merchandise|itp_primary|itp_secondary|itp_no_parry|itp_wooden_parry, itc_cleaver|itcf_carry_sword_left_hip,
  1955. 320 , weight(1.1)|difficulty(0)|spd_rtng(101) | weapon_length(57)|swing_damage(26 , cut) | thrust_damage(0 , pierce),imodbits_sword],
  1956. ["dacian_short_sword", "Dacian Short Sword", [("dacian_short_sword",0),("gallic_sword_scabbard_1", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1957. 280 , weight(2.0)|difficulty(0)|spd_rtng(93) | weapon_length(71)|swing_damage(24 , cut) | thrust_damage(24 , pierce),imodbits_sword_high ], # Was 92 weapon length
  1958. ["dacian_spatha", "Dacian Spatha", [("dacian_spatha",0),("gallic_sword_scabbard_2", ixmesh_carry),("sword_rusty_a",imodbit_rusty),("sword_rusty_a_scabbard", ixmesh_carry|imodbit_rusty)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1959. 420 , weight(2.3)|difficulty(0)|spd_rtng(90) | weapon_length(97)|swing_damage(28 , cut) | thrust_damage(26 , pierce),imodbits_sword_high ], ## Was 28c, 20p now 30(33)c, 30p
  1960. ["dacian_long_sword", "Dacian Long Sword", [("dacian_long_sword",0),("gallic_sword_scabbard_3", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1961. 840 , weight(2.5)|difficulty(0)|spd_rtng(91) | weapon_length(95)|swing_damage(32 , cut) | thrust_damage(28 , pierce),imodbits_sword_high ], ## Was 38c, 25p now 33(36)c, 29p speed 87 -> 85 -> 83
  1962.  
  1963. ["dacian_falx_1", "Falx", [("gallic_falx_1",0)], itp_type_polearm|itp_two_handed|itp_primary|itp_bonus_against_shield|itp_wooden_parry|itp_merchandise,itc_staff|itcf_carry_axe_back,
  1964. 800 , weight(2.5)|difficulty(10)|spd_rtng(98) | weapon_length(102)|swing_damage(40 , cut) | thrust_damage(10 , pierce),imodbits_axe],
  1965. ["dacian_falx_2", "War Falx", [("gallic_falx_2",0)], itp_type_polearm| itp_two_handed|itp_primary|itp_bonus_against_shield|itp_wooden_parry|itp_merchandise, itc_staff|itcf_carry_axe_back,
  1966. 1600 , weight(3.5)|difficulty(10)|spd_rtng(96) | weapon_length(103)|swing_damage(45 , cut) | thrust_damage(10 , pierce),imodbits_axe],
  1967. ["dacian_falx_3", "Great Falx", [("gallic_falx_3",0)], itp_type_polearm| itp_two_handed|itp_primary|itp_bonus_against_shield|itp_wooden_parry|itp_merchandise, itc_staff|itcf_carry_axe_back,
  1968. 2400 , weight(4.5)|difficulty(10)|spd_rtng(94) | weapon_length(105)|swing_damage(50 , cut) | thrust_damage(10 , blunt),imodbits_axe],
  1969.  
  1970. ["short_bow_dacian", "Dacian Short Bow", [("short_bow",0),("short_bow_carry",ixmesh_carry)], itp_type_bow |itp_merchandise|itp_primary|itp_two_handed ,itcf_shoot_bow|itcf_carry_bow_back,
  1971. 300 , weight(1.5)|difficulty(1)|spd_rtng(97) | shoot_speed(55) | thrust_damage(22 , pierce ),imodbits_bow],
  1972. ["composite_bow_dacian", "Composite Bow", [("khergit_bow",0),("khergit_bow", ixmesh_carry)], itp_type_bow |itp_merchandise|itp_primary|itp_two_handed,itcf_shoot_bow|itcf_carry_bowcase_left|itcf_show_holster_when_drawn,
  1973. 600 , weight(2.0)|difficulty(1)|spd_rtng(94) | shoot_speed(60) | thrust_damage(24 ,pierce),imodbits_bow],
  1974.  
  1975. #lel
  1976. #["winds_fists_of_fury", "Anti-Cav Fists", [("invalid_item",0),("invalid_item", ixmesh_carry)], itp_type_one_handed_wpn|itp_merchandise|itp_primary, itc_longsword|itcf_carry_sword_left_hip|itcf_show_holster_when_drawn,
  1977. # 0 , weight(2.5)|difficulty(0)|spd_rtng(90) | weapon_length(97)|swing_damage(50 , cut) | thrust_damage(80 , pierce),imodbits_sword_high ],
  1978.  
  1979. #1.1
  1980. ["copper_ore", "Copper Ore", [("pw_copper_ore",0)], itp_type_polearm|itp_two_handed|itp_primary, itcf_carry_bow_back,
  1981. 850, weight(60)|spd_rtng(50)|swing_damage(10,blunt)|thrust_damage(10,blunt)|weapon_length(50), imodbits_none, [itm_class(item_class_precious, 0)]],
  1982.  
  1983. ["copper_bar", "Copper Bar", [("pw_copper_bar",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger|itcf_carry_revolver_right,
  1984. 450, weight(30)|spd_rtng(60)|swing_damage(10,blunt)|thrust_damage(10,blunt)|weapon_length(20), imodbits_none, [itm_class(item_class_precious, 0)]],
  1985.  
  1986. ["copper_bar_short", "Short Copper Bar", [("pw_copper_piece",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger|itcf_carry_bow_back,
  1987. 440, weight(10)|spd_rtng(70)|swing_damage(10,blunt)|thrust_damage(10,blunt)|weapon_length(25), imodbits_none, [itm_class(item_class_precious, 0)]],
  1988.  
  1989. ["zinc_ore", "Zinc Ore", [("pw_zinc_ore",0)], itp_type_polearm|itp_two_handed|itp_primary, itcf_carry_bow_back,
  1990. 4850, weight(60)|spd_rtng(50)|swing_damage(10,blunt)|thrust_damage(10,blunt)|weapon_length(50), imodbits_none, [itm_class(item_class_iron, 0)]],
  1991.  
  1992. ["brass_bar", "Brass Bar", [("pw_brass_bar",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger|itcf_carry_revolver_right,
  1993. 1720, weight(30)|spd_rtng(60)|swing_damage(10,blunt)|thrust_damage(10,blunt)|weapon_length(20), imodbits_none, [itm_class(item_class_precious, 0)]],
  1994.  
  1995. ["brass_bar_short", "Short Brass Bar", [("pw_brass_piece",0)], itp_type_one_handed_wpn|itp_primary, itc_dagger|itcf_carry_bow_back,
  1996. 440, weight(10)|spd_rtng(70)|swing_damage(10,blunt)|thrust_damage(10,blunt)|weapon_length(25), imodbits_none, [itm_class(item_class_precious, 0)]],
  1997.  
  1998. ["plague_mask", "Plague Mask", [("mask",0)], itp_type_head_armor, 0,
  1999. 5133, weight(2)|head_armor(11)|difficulty(0), imodbits_cloth],
  2000.  
  2001. ["onion", "Onion", [("onion",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2002. 109, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 3)]],
  2003.  
  2004. ["cut_onions", "Cut Onions", [("cut_onion",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2005. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 3)]],
  2006.  
  2007. ["olives", "Olives", [("olives",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2008. 416, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 35)]],
  2009.  
  2010. ["olive_oil", "Olive Oil", [("mustard_bottle",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2011. 516, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 20)]],
  2012.  
  2013. ["bread_cut", "Bread Slice", [("bread_slice_a",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2014. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 25)]],
  2015.  
  2016. ["buttered_bread_cut", "Buttered Bread Slice", [("bread_slice_a",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2017. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 50)]],
  2018.  
  2019. ["olived_bread_cut", "Olive Oil on Bread Slice", [("bread_slice_a",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2020. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 50)]],
  2021.  
  2022. ["olived_buttered_bread_cut", "Olive Oil and Butter on Bread Slice", [("bread_slice_a",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2023. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 75)]],
  2024.  
  2025. ["butter_small", "Butter", [("butter_small",0),("butter_small",ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_carry_bow_back,
  2026. 349, weight(20)|spd_rtng(20)|weapon_length(100), imodbits_none, [itm_class(item_class_food, 200)]],
  2027.  
  2028. ["milk_bucket", "Milk Bucket", [("milk_bucket",0),("milk_bucket_ground",ixmesh_carry)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itcf_slashright_onehanded,
  2029. 250, weight(40)|spd_rtng(50)|weapon_length(100)|swing_damage(10,blunt), imodbits_none, [itm_class(item_class_food, 50)]],
  2030.  
  2031. ["milk_jug", "Milk Jug", [("milk_jug",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2032. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 50)]],
  2033.  
  2034. ["potato", "Potato", [("potato",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2035. 109, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 8)]],
  2036.  
  2037. ["cut_potato", "Cut Potato", [("potato_cut",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2038. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 8)]],
  2039.  
  2040. ["cabbage", "Cabbage", [("cabbage",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2041. 109, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 8)]],
  2042.  
  2043. ["cut_carrots", "Cut Carrots", [("carrot_cut",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2044. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 8)]],
  2045.  
  2046. ["cabbage_leaf", "Cabbage Leaves", [("lettuce",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2047. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 8)]],
  2048.  
  2049. ["shitocky_mushroom", "Brown Mushroom", [("shroom",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2050. 430, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 15)]],
  2051.  
  2052. ["truffle", "Truffle", [("shroom",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2053. 3021, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 100)]],
  2054.  
  2055. ["dotted_mushroom", "Dotted Mushroom", [("copy_shroom",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2056. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 1)]],
  2057.  
  2058. ["bad_trip_mushroom", "Brown Fungus", [("shroom",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2059. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 1)]],
  2060.  
  2061. ["shitocky_soup", "Shitocky Soup", [("plate_b",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2062. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 50)]],
  2063.  
  2064. ["shit_soup", "Shitocky Soup", [("plate_b",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2065. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 1)]],
  2066.  
  2067. ["vegetable_soup_pot", "Vegetable Soup Pot", [("cauldron_a",0),("cauldron_a",ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_carry_bow_back,
  2068. 521, weight(20)|spd_rtng(20)|weapon_length(100), imodbits_none, [itm_class(item_class_food, 200)]],
  2069.  
  2070. ["vegetable_soup_bowl", "Vegetable Soup Bowl", [("plate_b",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2071. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 50)]],
  2072.  
  2073. ["cut_meat", "Meat Chunks", [("meat_cube",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2074. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 8)]],
  2075.  
  2076. ["stew_pot", "Stew Pot", [("cauldron_a",0),("cauldron_a",ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_carry_bow_back,
  2077. 521, weight(20)|spd_rtng(20)|weapon_length(100), imodbits_none, [itm_class(item_class_food, 200)]],
  2078.  
  2079. ["stew_bowl", "Stew Bowl", [("plate_b",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2080. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 50)]],
  2081.  
  2082. ["cheese", "Cheese", [("cheese_a",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2083. 654, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 35)]],
  2084.  
  2085. ["baked_potato", "Baked Potato", [("potato",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2086. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 25)]],
  2087.  
  2088. ["cut_mushrooms_poison", "Cut Mushrooms", [("cut_mushroom",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2089. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 1)]],
  2090.  
  2091. ["mushroom_stew_pot", "Mushroom Stew Pot", [("cauldron_a",0),("cauldron_a",ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_carry_bow_back,
  2092. 521, weight(20)|spd_rtng(20)|weapon_length(100), imodbits_none, [itm_class(item_class_food, 200)]],
  2093.  
  2094. ["mushroom_stew_bowl", "Mushroom Stew Bowl", [("plate_b",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2095. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 50)]],
  2096.  
  2097. ["mushroom_stew_pot_poison", "Mushroom Stew Pot", [("cauldron_a",0),("cauldron_a",ixmesh_carry)], itp_type_polearm|itp_two_handed|itp_primary|itp_cant_use_on_horseback|itp_no_parry, itcf_carry_bow_back,
  2098. 521, weight(20)|spd_rtng(20)|weapon_length(100), imodbits_none, [itm_class(item_class_food, 200)]],
  2099.  
  2100. ["mushroom_stew_bowl_poison", "Mushroom Stew Bowl", [("plate_b",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2101. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 50)]],
  2102.  
  2103. ["cut_mushrooms", "Cut Mushrooms", [("cut_mushroom",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2104. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 15)]],
  2105.  
  2106. ["buttered_baked_potato", "Buttered Baked Potato", [("potato",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_dagger_front_right,
  2107. 30, weight(0.25)|spd_rtng(90)|weapon_length(25)|swing_damage(0,cut), imodbits_none, [itm_class(item_class_food, 50)]],
  2108.  
  2109. ["vomit", "Vomit", [("raw_dye_yellow",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2110. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 2)]],
  2111.  
  2112. ["bloody_vomit", "Bloody Vomit", [("raw_dye_red",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2113. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 2)]],
  2114.  
  2115. ["plague_inducer", "Plague Inducer", [("mustard_bottle",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2116. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 2)]],
  2117.  
  2118. ["cold_inducer", "Cold Inducer", [("mustard_bottle",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2119. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 2)]],
  2120.  
  2121. ["flu_inducer", "Flu Inducer", [("mustard_bottle",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2122. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_food, 2)]],
  2123.  
  2124. ["blue_dye", "Blue Dye", [("raw_dye_blue",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2125. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none],
  2126.  
  2127. ["male_head", "Severed Head", [("bloodystumps",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2128. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_leather, 400)]],
  2129.  
  2130. ["female_head", "Severed Head", [("kitchenperson",0)], itp_type_one_handed_wpn|itp_primary|itp_no_parry, itc_dagger|itcf_carry_bowcase_left,
  2131. 136, weight(1)|spd_rtng(65)|weapon_length(20)|swing_damage(1,cut), imodbits_none, [itm_class(item_class_leather, 400)]],
  2132. #MOR END
  2133.  
  2134. itm_faction_banner("a01"),
  2135. itm_faction_banner("a02"),
  2136. itm_faction_banner("a03"),
  2137. itm_faction_banner("a04"),
  2138. itm_faction_banner("a05"),
  2139. itm_faction_banner("a06"),
  2140. itm_faction_banner("a07"),
  2141. itm_faction_banner("a08"),
  2142. itm_faction_banner("a09"),
  2143. itm_faction_banner("a10"),
  2144. itm_faction_banner("a11"),
  2145. itm_faction_banner("a12"),
  2146. itm_faction_banner("a13"),
  2147. itm_faction_banner("a14"),
  2148. itm_faction_banner("a15"),
  2149. itm_faction_banner("a16"),
  2150. itm_faction_banner("a17"),
  2151. itm_faction_banner("a18"),
  2152. itm_faction_banner("a19"),
  2153. itm_faction_banner("a20"),
  2154. itm_faction_banner("a21"),
  2155. itm_faction_banner("b01"),
  2156. itm_faction_banner("b02"),
  2157. itm_faction_banner("b03"),
  2158. itm_faction_banner("b04"),
  2159. itm_faction_banner("b05"),
  2160. itm_faction_banner("b06"),
  2161. itm_faction_banner("b07"),
  2162. itm_faction_banner("b08"),
  2163. itm_faction_banner("b09"),
  2164. itm_faction_banner("b10"),
  2165. itm_faction_banner("b11"),
  2166. itm_faction_banner("b12"),
  2167. itm_faction_banner("b13"),
  2168. itm_faction_banner("b14"),
  2169. itm_faction_banner("b15"),
  2170. itm_faction_banner("b16"),
  2171. itm_faction_banner("b17"),
  2172. itm_faction_banner("b18"),
  2173. itm_faction_banner("b19"),
  2174. itm_faction_banner("b20"),
  2175. itm_faction_banner("b21"),
  2176. itm_faction_banner("c01"),
  2177. itm_faction_banner("c02"),
  2178. itm_faction_banner("c03"),
  2179. itm_faction_banner("c04"),
  2180. itm_faction_banner("c05"),
  2181. itm_faction_banner("c06"),
  2182. itm_faction_banner("c07"),
  2183. itm_faction_banner("c08"),
  2184. itm_faction_banner("c09"),
  2185. itm_faction_banner("c10"),
  2186. itm_faction_banner("c11"),
  2187. itm_faction_banner("c12"),
  2188. itm_faction_banner("c13"),
  2189. itm_faction_banner("c14"),
  2190. itm_faction_banner("c15"),
  2191. itm_faction_banner("c16"),
  2192. itm_faction_banner("c17"),
  2193. itm_faction_banner("c18"),
  2194. itm_faction_banner("c19"),
  2195. itm_faction_banner("c20"),
  2196. itm_faction_banner("c21"),
  2197. itm_faction_banner("d01"),
  2198. itm_faction_banner("d02"),
  2199. itm_faction_banner("d03"),
  2200. itm_faction_banner("d04"),
  2201. itm_faction_banner("d05"),
  2202. itm_faction_banner("d06"),
  2203. itm_faction_banner("d07"),
  2204. itm_faction_banner("d08"),
  2205. itm_faction_banner("d09"),
  2206. itm_faction_banner("d10"),
  2207. itm_faction_banner("d11"),
  2208. itm_faction_banner("d12"),
  2209. itm_faction_banner("d13"),
  2210. itm_faction_banner("d14"),
  2211. itm_faction_banner("d15"),
  2212. itm_faction_banner("d16"),
  2213. itm_faction_banner("d17"),
  2214. itm_faction_banner("d18"),
  2215. itm_faction_banner("d19"),
  2216. itm_faction_banner("d20"),
  2217. itm_faction_banner("d21"),
  2218. itm_faction_banner("e01"),
  2219. itm_faction_banner("e02"),
  2220. itm_faction_banner("e03"),
  2221. itm_faction_banner("e04"),
  2222. itm_faction_banner("e05"),
  2223. itm_faction_banner("e06"),
  2224. itm_faction_banner("e07"),
  2225. itm_faction_banner("e08"),
  2226. itm_faction_banner("e09"),
  2227. itm_faction_banner("e10"),
  2228. itm_faction_banner("e11"),
  2229. itm_faction_banner("e12"),
  2230. itm_faction_banner("e13"),
  2231. itm_faction_banner("e14"),
  2232. itm_faction_banner("e15"),
  2233. itm_faction_banner("e16"),
  2234. itm_faction_banner("e17"),
  2235. itm_faction_banner("e18"),
  2236. itm_faction_banner("e19"),
  2237. itm_faction_banner("e20"),
  2238. itm_faction_banner("e21"),
  2239. itm_faction_banner("f01"),
  2240. itm_faction_banner("f02"),
  2241. itm_faction_banner("f03"),
  2242. itm_faction_banner("f04"),
  2243. itm_faction_banner("f05"),
  2244. itm_faction_banner("f06"),
  2245. itm_faction_banner("f07"),
  2246. itm_faction_banner("f08"),
  2247. itm_faction_banner("f09"),
  2248. itm_faction_banner("f10"),
  2249. itm_faction_banner("f11"),
  2250. itm_faction_banner("f12"),
  2251. itm_faction_banner("f13"),
  2252. itm_faction_banner("f14"),
  2253. itm_faction_banner("f15"),
  2254. itm_faction_banner("f16"),
  2255. itm_faction_banner("f17"),
  2256. itm_faction_banner("f18"),
  2257. itm_faction_banner("f19"),
  2258. itm_faction_banner("f20"),
  2259. itm_faction_banner("f21"),
  2260. itm_faction_banner("g01"),
  2261. itm_faction_banner("g02"),
  2262. itm_faction_banner("g03"),
  2263. itm_faction_banner("g04"),
  2264. itm_faction_banner("g05"),
  2265. itm_faction_banner("g06"),
  2266. itm_faction_banner("g07"),
  2267. itm_faction_banner("g08"),
  2268. itm_faction_banner("g09"),
  2269. itm_faction_banner("g10"),
  2270. itm_faction_banner("g11"),
  2271. itm_faction_banner("g12"),
  2272. itm_faction_banner("g13"),
  2273. itm_faction_banner("g14"),
  2274. itm_faction_banner("g15"),
  2275. itm_faction_banner("g16"),
  2276. itm_faction_banner("g17"),
  2277. itm_faction_banner("g18"),
  2278. itm_faction_banner("g19"),
  2279. itm_faction_banner("g20"),
  2280. itm_faction_banner("g21"),
  2281. itm_faction_banner("h01"),
  2282. itm_faction_banner("h02"),
  2283. itm_faction_banner("h03"),
  2284. itm_faction_banner("h04"),
  2285. itm_faction_banner("h05"),
  2286. itm_faction_banner("h06"),
  2287. itm_faction_banner("h07"),
  2288. itm_faction_banner("h08"),
  2289. itm_faction_banner("h09"),
  2290. itm_faction_banner("h10"),
  2291. itm_faction_banner("h11"),
  2292. itm_faction_banner("h12"),
  2293. itm_faction_banner("h13"),
  2294. itm_faction_banner("h14"),
  2295. itm_faction_banner("h15"),
  2296. itm_faction_banner("h16"),
  2297. itm_faction_banner("h17"),
  2298. itm_faction_banner("h18"),
  2299. itm_faction_banner("h19"),
  2300. itm_faction_banner("h20"),
  2301. itm_faction_banner("h21"),
  2302. itm_faction_banner("i01"),
  2303. itm_faction_banner("i02"),
  2304. itm_faction_banner("i03"),
  2305. itm_faction_banner("i04"),
  2306. itm_faction_banner("i05"),
  2307. itm_faction_banner("i06"),
  2308. itm_faction_banner("i07"),
  2309. itm_faction_banner("i08"),
  2310. itm_faction_banner("i09"),
  2311. itm_faction_banner("i10"),
  2312. itm_faction_banner("i11"),
  2313. itm_faction_banner("i12"),
  2314. itm_faction_banner("i13"),
  2315. itm_faction_banner("i14"),
  2316. itm_faction_banner("i15"),
  2317. itm_faction_banner("i16"),
  2318. itm_faction_banner("i17"),
  2319. itm_faction_banner("i18"),
  2320. itm_faction_banner("i19"),
  2321. itm_faction_banner("i20"),
  2322. itm_faction_banner("i21"),
  2323. itm_faction_banner("j01"),
  2324. itm_faction_banner("j02"),
  2325. itm_faction_banner("j03"),
  2326. itm_faction_banner("j04"),
  2327. itm_faction_banner("j05"),
  2328. itm_faction_banner("j06"),
  2329. itm_faction_banner("j07"),
  2330. itm_faction_banner("j08"),
  2331. itm_faction_banner("j09"),
  2332. itm_faction_banner("j10"),
  2333. itm_faction_banner("j11"),
  2334. itm_faction_banner("j12"),
  2335. itm_faction_banner("j13"),
  2336. itm_faction_banner("j14"),
  2337. itm_faction_banner("j15"),
  2338. itm_faction_banner("j16"),
  2339. itm_faction_banner("j17"),
  2340. itm_faction_banner("j18"),
  2341. itm_faction_banner("j19"),
  2342. itm_faction_banner("j20"),
  2343. itm_faction_banner("j21"),
  2344. itm_faction_banner("k01"),
  2345. itm_faction_banner("k02"),
  2346. itm_faction_banner("k03"),
  2347. itm_faction_banner("k04"),
  2348. itm_faction_banner("k05"),
  2349. itm_faction_banner("k06"),
  2350. itm_faction_banner("k07"),
  2351. itm_faction_banner("k08"),
  2352. itm_faction_banner("k09"),
  2353. itm_faction_banner("k10"),
  2354. itm_faction_banner("k11"),
  2355. itm_faction_banner("k12"),
  2356. itm_faction_banner("k13"),
  2357. itm_faction_banner("k14"),
  2358. itm_faction_banner("k15"),
  2359. itm_faction_banner("k16"),
  2360. itm_faction_banner("k17"),
  2361. itm_faction_banner("k18"),
  2362. itm_faction_banner("k19"),
  2363. itm_faction_banner("k20"),
  2364. itm_faction_banner("k21"),
  2365. itm_faction_banner("l01"),
  2366. itm_faction_banner("l02"),
  2367. itm_faction_banner("l03"),
  2368. itm_faction_banner("l04"),
  2369. itm_faction_banner("l05"),
  2370. itm_faction_banner("l06"),
  2371. itm_faction_banner("l07"),
  2372. itm_faction_banner("l08"),
  2373. itm_faction_banner("l09"),
  2374. itm_faction_banner("l10"),
  2375. itm_faction_banner("l11"),
  2376. itm_faction_banner("l12"),
  2377. itm_faction_banner("l13"),
  2378. itm_faction_banner("l14"),
  2379. itm_faction_banner("l15"),
  2380. itm_faction_banner("l16"),
  2381. itm_faction_banner("l17"),
  2382. itm_faction_banner("l18"),
  2383. itm_faction_banner("l19"),
  2384. itm_faction_banner("l20"),
  2385. itm_faction_banner("l21"),
  2386. itm_faction_banner("m01"),
  2387. itm_faction_banner("m02"),
  2388. itm_faction_banner("m03"),
  2389. itm_faction_banner("m04"),
  2390. itm_faction_banner("m05"),
  2391. itm_faction_banner("m06"),
  2392. itm_faction_banner("m07"),
  2393. itm_faction_banner("m08"),
  2394. itm_faction_banner("m09"),
  2395. itm_faction_banner("m10"),
  2396. itm_faction_banner("m11"),
  2397. itm_faction_banner("m12"),
  2398. itm_faction_banner("m13"),
  2399. itm_faction_banner("kingdom_a"),
  2400. itm_faction_banner("kingdom_b"),
  2401. itm_faction_banner("kingdom_c"),
  2402. itm_faction_banner("kingdom_d"),
  2403. itm_faction_banner("kingdom_e"),
  2404. itm_faction_banner("kingdom_f"),
  2405. itm_faction_banner("kingdom_g"),
  2406. itm_castle_banner("fac_1", "a"),
  2407. itm_castle_banner("fac_2", "a"),
  2408. itm_castle_banner("fac_3", "a"),
  2409. itm_castle_banner("fac_4", "a"),
  2410. itm_castle_banner("fac_5", "a"),
  2411. itm_castle_banner("fac_6", "a"),
  2412. itm_castle_banner("fac_7", "a"),
  2413. itm_castle_banner("fac_8", "a"),
  2414. itm_castle_banner("fac_1", "b"),
  2415. itm_castle_banner("fac_2", "b"),
  2416. itm_castle_banner("fac_3", "b"),
  2417. itm_castle_banner("fac_4", "b"),
  2418. itm_castle_banner("fac_5", "b"),
  2419. itm_castle_banner("fac_6", "b"),
  2420. itm_castle_banner("fac_7", "b"),
  2421. itm_castle_banner("fac_8", "b"),
  2422. itm_wall_banner("fac_1", "a"),
  2423. itm_wall_banner("fac_2", "a"),
  2424. itm_wall_banner("fac_3", "a"),
  2425. itm_wall_banner("fac_4", "a"),
  2426. itm_wall_banner("fac_5", "a"),
  2427. itm_wall_banner("fac_6", "a"),
  2428. itm_wall_banner("fac_7", "a"),
  2429. itm_wall_banner("fac_8", "a"),
  2430. itm_wall_banner("fac_1", "b"),
  2431. itm_wall_banner("fac_2", "b"),
  2432. itm_wall_banner("fac_3", "b"),
  2433. itm_wall_banner("fac_4", "b"),
  2434. itm_wall_banner("fac_5", "b"),
  2435. itm_wall_banner("fac_6", "b"),
  2436. itm_wall_banner("fac_7", "b"),
  2437. itm_wall_banner("fac_8", "b"),
  2438.  
  2439. ["admin_horse", "Admin Horse", [("plated_charger_black",0)], itp_type_horse, 0,
  2440. 0, hit_points(500)|body_armor(100)|difficulty(0)|horse_speed(400)|horse_maneuver(100)|horse_charge(50)|horse_scale(130), imodbit_spirited],
  2441. ["invisible_head", "Invisible Head", [("invisible",0)], itp_type_head_armor|itp_covers_head, 0,
  2442. 0, weight(1)|head_armor(80)|difficulty(30), imodbits_none],
  2443. ["invisible_body", "Invisible Body", [("invisible",0)], itp_type_body_armor|itp_covers_legs, 0,
  2444. 0, weight(1)|body_armor(80)|leg_armor(30)|difficulty(30), imodbits_none],
  2445. ["invisible_foot", "Invisible Foot", [("invisible",0)], itp_type_foot_armor|itp_attach_armature, 0,
  2446. 0, weight(1)|leg_armor(65)|difficulty(30), imodbits_none],
  2447. ["invisible_hand", "Invisible Hand", [("invisible_L",0)], itp_type_hand_armor, 0,
  2448. 0, weight(1)|body_armor(20)|difficulty(30), imodbits_none],
  2449. ["invisible_sword", "Invisible Sword", [("invisible",0)], itp_type_two_handed_wpn|itp_two_handed|itp_primary, itc_greatsword|itcf_carry_sword_back,
  2450. 0, weight(1)|difficulty(30)|spd_rtng(120)|weapon_length(120)|swing_damage(255, cut)|thrust_damage(255, pierce), imodbits_sword_high],
  2451.  
  2452. ["all_items_end", "all_items_end", [("invisible",0)], itp_no_pick_up_from_ground, 0, 0, 0, 0],
  2453. ["pointer_arrow", "pointer_arrow", [("pointer_arrow",0)], itp_no_pick_up_from_ground, 0, 0, 0, 0],
  2454. ["animal_herd_manager", "animal_herd_manager", [("invisible",0)], itp_no_pick_up_from_ground, 0, 0, 0, 0],
  2455. ["animal_carcass", "animal_carcass", [("pw_blood_a",0)], itp_no_pick_up_from_ground, 0, 0, 0, 0],
  2456. ["agent_corpse", "agent_corpse", [("pw_blood_b",imodbit_plain),("pw_blood_c",imodbit_cracked),("pw_dropped_armor",imodbit_rusty)], itp_no_pick_up_from_ground, 0, 0, 0, 0],
  2457. ]
  2458.  
  2459. item_lengths_list = []
  2460. item_difficulties_list = []
  2461. item_class_list = []
  2462. herd_animal_list = []
  2463.  
  2464. itm_weapons = frozenset([itp_type_one_handed_wpn, itp_type_two_handed_wpn, itp_type_polearm, itp_type_bow, itp_type_crossbow, itp_type_thrown])
  2465. itc_attack_capable = itcf_thrust_onehanded|itcf_overswing_onehanded|itcf_slashright_onehanded|itcf_slashleft_onehanded|\
  2466. itcf_thrust_twohanded|itcf_overswing_twohanded|itcf_slashright_twohanded|itcf_slashleft_twohanded|\
  2467. itcf_thrust_polearm|itcf_overswing_polearm|itcf_slashright_polearm|itcf_slashleft_polearm|\
  2468. itcf_shoot_bow|itcf_shoot_javelin|itcf_shoot_crossbow|itcf_throw_stone|itcf_throw_knife|itcf_throw_axe|itcf_throw_javelin|itcf_shoot_pistol|itcf_shoot_musket|\
  2469. itcf_horseback_thrust_onehanded|itcf_horseback_overswing_right_onehanded|itcf_horseback_overswing_left_onehanded|\
  2470. itcf_horseback_slashright_onehanded|itcf_horseback_slashleft_onehanded|itcf_thrust_onehanded_lance|itcf_thrust_onehanded_lance_horseback|\
  2471. itcf_horseback_slash_polearm|itcf_overswing_spear|itcf_overswing_musket|itcf_thrust_musket
  2472.  
  2473. def pre_process_items():
  2474. for item_id, item in enumerate(items):
  2475. item_length = get_weapon_length(item[6])
  2476. item_lengths_list.append(item_length)
  2477. item_difficulty = get_difficulty(item[6])
  2478. item_difficulties_list.append(item_difficulty)
  2479. item_type = item[3] & 0xff
  2480. if item_type in (itp_type_bow, itp_type_crossbow):
  2481. item[6] &= ~(ibf_10bit_mask << iwf_weapon_length_bits)
  2482. if not item_type == itp_type_horse and not item_difficulty >= 30:
  2483. item[6] &= ~(ibf_armor_mask << ibf_difficulty_bits)
  2484. item_len = len(item)
  2485. if item_type in itm_weapons and item_difficulty > 0 and item[4] & itc_attack_capable:
  2486. check_can_attack = (ti_on_weapon_attack,
  2487. [(store_trigger_param_1, ":agent_id"),
  2488. (agent_slot_eq, ":agent_id", slot_agent_cannot_attack, 1),
  2489. (agent_set_wielded_item, ":agent_id", -1)])
  2490. if item_len <= 8:
  2491. item.extend([0] * (8 - item_len) + [[check_can_attack]])
  2492. else:
  2493. item[8].append(check_can_attack)
  2494. if item_len <= 8:
  2495. continue
  2496. trigger_list = item[8]
  2497. triggers_to_pop = []
  2498. for i, trigger in enumerate(trigger_list):
  2499. if trigger[0] == tag_item_class:
  2500. list_entry = [item_id]
  2501. list_entry.extend(trigger[1:])
  2502. item_class_list.append(list_entry)
  2503. if trigger[1] == item_class_food and trigger[2] > 0:
  2504. trigger_list[i] = (ti_on_weapon_attack,
  2505. [(store_trigger_param_1, ":agent_id"),
  2506. (call_script, "script_cf_eat_food", ":agent_id", item_id),
  2507. ])
  2508. else:
  2509. triggers_to_pop.append(i)
  2510. elif trigger[0] == tag_item_herd_animal:
  2511. herd_animal_list.append([item_id] + trigger[1:])
  2512. triggers_to_pop.append(i)
  2513. for i in reversed(triggers_to_pop):
  2514. trigger_list.pop(i)
  2515. pre_process_items()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement