fixing stuff
This commit is contained in:
@@ -8,6 +8,26 @@ import os
|
|||||||
os.chdir(os.getcwd() + "\\dev_stuff\\python_helpers\\")
|
os.chdir(os.getcwd() + "\\dev_stuff\\python_helpers\\")
|
||||||
|
|
||||||
|
|
||||||
|
def generate_file_table(name, guid):
|
||||||
|
root_guid = gfg.Element("files")
|
||||||
|
|
||||||
|
path_guidtable = gfg.Element("path")
|
||||||
|
path_guidtable.text = "media/clothing/clothingItems/" + name + ".xml"
|
||||||
|
root_guid.append(path_guidtable)
|
||||||
|
|
||||||
|
guid_guidtable = gfg.Element("guid")
|
||||||
|
guid_guidtable.text = guid
|
||||||
|
root_guid.append(guid_guidtable)
|
||||||
|
|
||||||
|
tree_guid = gfg.ElementTree(root_guid)
|
||||||
|
|
||||||
|
path_idtable = r'outputs/fileGuidTable.xml'
|
||||||
|
|
||||||
|
with open(path_idtable, "ab") as file:
|
||||||
|
tree_guid.write(file, encoding='utf-8', pretty_print=True)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -49,31 +69,8 @@ def generate_clothing_item(name, model, texture_choices):
|
|||||||
with open(path, "wb") as file:
|
with open(path, "wb") as file:
|
||||||
tree.write(file, encoding='utf-8', xml_declaration=True, pretty_print=True )
|
tree.write(file, encoding='utf-8', xml_declaration=True, pretty_print=True )
|
||||||
|
|
||||||
|
# Generate the element inside the file table
|
||||||
# Add a new part for guid table
|
generate_file_table(name, guid)
|
||||||
# <files>
|
|
||||||
# <path>media/clothing/clothingItems/Amputation_Right_Foot.xml</path>
|
|
||||||
# <guid>2600c2ab-bfeb-49c3-b0b5-e21c6d83d5c2</guid>
|
|
||||||
# </files>
|
|
||||||
|
|
||||||
root_guid = gfg.Element("files")
|
|
||||||
|
|
||||||
path_guidtable = gfg.Element("path")
|
|
||||||
path_guidtable.text = "media/clothing/clothingItems/" + name + ".xml"
|
|
||||||
root_guid.append(path_guidtable)
|
|
||||||
|
|
||||||
guid_guidtable = gfg.Element("guid")
|
|
||||||
guid_guidtable.text = guid
|
|
||||||
root_guid.append(guid_guidtable)
|
|
||||||
|
|
||||||
tree_guid = gfg.ElementTree(root_guid)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
path_idtable = r'outputs/fileGuidTable.xml'
|
|
||||||
|
|
||||||
with open(path_idtable, "ab") as file:
|
|
||||||
tree_guid.write(file, encoding='utf-8', pretty_print=True)
|
|
||||||
|
|
||||||
def generate_recipe(recipe_name, result_name, recipe_items, on_create_func, time, skill_required, tooltip):
|
def generate_recipe(recipe_name, result_name, recipe_items, on_create_func, time, skill_required, tooltip):
|
||||||
root_element = f"recipe {recipe_name}\n"
|
root_element = f"recipe {recipe_name}\n"
|
||||||
@@ -105,7 +102,7 @@ def generate_recipe(recipe_name, result_name, recipe_items, on_create_func, time
|
|||||||
file.write(root_element)
|
file.write(root_element)
|
||||||
file.close()
|
file.close()
|
||||||
|
|
||||||
def generate_item(item_name, weight, item_type, display_category, display_name, icon, tooltip, can_have_holes, clothing_item=None, body_location = None, blood_location = None):
|
def generate_item(item_name, weight, item_type, display_category, display_name, icon, tooltip, can_have_holes, clothing_item=None, body_location = None, blood_location = None, world_static_model = None):
|
||||||
root_element = f"item {item_name}\n"
|
root_element = f"item {item_name}\n"
|
||||||
root_element += "\t{\n"
|
root_element += "\t{\n"
|
||||||
|
|
||||||
@@ -122,6 +119,7 @@ def generate_item(item_name, weight, item_type, display_category, display_name,
|
|||||||
root_element += f"\t\tIcon = {icon},\n"
|
root_element += f"\t\tIcon = {icon},\n"
|
||||||
root_element += f"\t\tTooltip = {tooltip},\n"
|
root_element += f"\t\tTooltip = {tooltip},\n"
|
||||||
root_element += f"\t\tCanHaveHoles = {can_have_holes.lower()},\n"
|
root_element += f"\t\tCanHaveHoles = {can_have_holes.lower()},\n"
|
||||||
|
root_element += f"\t\tWorldStaticModel = {world_static_model},\n"
|
||||||
|
|
||||||
root_element += "\t}\n"
|
root_element += "\t}\n"
|
||||||
|
|
||||||
@@ -178,6 +176,8 @@ texture_types = ["Wooden", "Metal"]
|
|||||||
|
|
||||||
# CLOTHING GENERATION PASS
|
# CLOTHING GENERATION PASS
|
||||||
def run_clothing_generation():
|
def run_clothing_generation():
|
||||||
|
|
||||||
|
# TODO Fix this, model is wrong!
|
||||||
for base_row in df_base.iterrows():
|
for base_row in df_base.iterrows():
|
||||||
for top_row in df_top.iterrows():
|
for top_row in df_top.iterrows():
|
||||||
base_name = base_row[1][0]
|
base_name = base_row[1][0]
|
||||||
@@ -186,30 +186,55 @@ def run_clothing_generation():
|
|||||||
for limb in limbs:
|
for limb in limbs:
|
||||||
for side in sides:
|
for side in sides:
|
||||||
current_name = "Prost_" + side + "_" + limb + "_" + base_name + "_" + top_name
|
current_name = "Prost_" + side + "_" + limb + "_" + base_name + "_" + top_name
|
||||||
texture_choices = {r"Amputations\\Upperarm\\skin01_b"}
|
texture_choices = {r"Amputations\Upperarm\skin01_b"}
|
||||||
generate_clothing_item(current_name, "test", texture_choices)
|
generate_clothing_item(current_name, current_name, texture_choices)
|
||||||
|
|
||||||
# ITEM GENERATION PASS - ASSEMBLED
|
# CLOTHING ITEM GENERATION PASS - ASSEMBLED
|
||||||
def run_assembled_item_generation():
|
def run_assembled_item_generation():
|
||||||
for base_row in df_base.iterrows():
|
for base_row in df_base.iterrows():
|
||||||
for top_row in df_top.iterrows():
|
for top_row in df_top.iterrows():
|
||||||
|
for limb in limbs:
|
||||||
|
for side in sides:
|
||||||
|
|
||||||
base_id = base_row[1]["Base"]
|
base_id = base_row[1]["Base"]
|
||||||
top_id = top_row[1]["Top"]
|
top_id = top_row[1]["Top"]
|
||||||
|
|
||||||
item_id = "Prost_" + base_id + "_" + top_id
|
item_id = "Prost_" + side + "_" + limb + "_" + base_id + "_" + top_id
|
||||||
item_type = "Clothing"
|
item_type = "Clothing"
|
||||||
weight = "{0:.2f}".format(float(base_row[1]["Weight"]) + float(top_row[1]["Weight"]))
|
weight = "{0:.2f}".format(float(base_row[1]["Weight"]) + float(top_row[1]["Weight"]))
|
||||||
display_category = "Prosthesis"
|
display_category = "Prosthesis"
|
||||||
display_name = "Prosthesis - " + base_row[1]["Display Name"] + " and " + top_row[1]["Display Name"]
|
display_name = "Prosthesis - " + base_row[1]["Display Name"] + " and " + top_row[1]["Display Name"]
|
||||||
|
|
||||||
for limb in limbs:
|
|
||||||
for side in sides:
|
|
||||||
clothing_item_name = "Prost_" + side + "_" + limb + "_" + base_id + "_" + top_id
|
clothing_item_name = "Prost_" + side + "_" + limb + "_" + base_id + "_" + top_id
|
||||||
bl = prost_bodylocations[0] if side == "Right" else prost_bodylocations[1]
|
bl = prost_bodylocations[0] if side == "Right" else prost_bodylocations[1]
|
||||||
|
|
||||||
icon = "metalLeg"
|
icon = "metalLeg"
|
||||||
generate_item(item_id, weight, item_type, display_category, display_name, icon, "TempTooltip", "false", clothing_item_name, bl, "Hands")
|
generate_item(item_id, weight, item_type, display_category, display_name, icon, "TempTooltip", "false", clothing_item_name, bl, "Hands")
|
||||||
|
|
||||||
|
# NORMAL ITEM
|
||||||
|
def run_assembled_normal_item_generation():
|
||||||
|
for base_row in df_base.iterrows():
|
||||||
|
for top_row in df_top.iterrows():
|
||||||
|
base_id = base_row[1]["Base"]
|
||||||
|
top_id = top_row[1]["Top"]
|
||||||
|
|
||||||
|
item_id = base_id + "_" + top_id
|
||||||
|
item_type = "Normal"
|
||||||
|
weight = "{0:.2f}".format(float(base_row[1]["Weight"]) + float(top_row[1]["Weight"]))
|
||||||
|
display_category = "Prosthesis"
|
||||||
|
display_name = "Prosthesis - " + base_row[1]["Display Name"] + " and " + top_row[1]["Display Name"]
|
||||||
|
|
||||||
|
world_static_model = "TOC.MetalHook"
|
||||||
|
|
||||||
|
icon = "metalLeg"
|
||||||
|
generate_item(item_id, weight, item_type, display_category, display_name, icon, "TempTooltip", "false", None, None, "Hands", world_static_model)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ITEM GENERATION PASS - Single item to assemble stuff
|
# ITEM GENERATION PASS - Single item to assemble stuff
|
||||||
def run_single_part_item_generation():
|
def run_single_part_item_generation():
|
||||||
generate_normal_items(df_base, "Base")
|
generate_normal_items(df_base, "Base")
|
||||||
@@ -271,4 +296,4 @@ def run_recipe_disassemble_generation():
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
run_recipe_assemble_generation()
|
run_assembled_normal_item_generation()
|
||||||
288
dev_stuff/python_helpers/outputs/fileGuidTable.xml
Normal file
288
dev_stuff/python_helpers/outputs/fileGuidTable.xml
Normal file
@@ -0,0 +1,288 @@
|
|||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_WoodenBase_WoodenHook.xml</path>
|
||||||
|
<guid>0683abbb-0cc9-4f19-9f16-e06f6786b559</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_WoodenBase_WoodenHook.xml</path>
|
||||||
|
<guid>e78ed217-0ae0-4083-8631-09771dd29808</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_WoodenBase_WoodenHook.xml</path>
|
||||||
|
<guid>26242655-de69-4b32-bba9-b50108126b60</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_WoodenBase_WoodenHook.xml</path>
|
||||||
|
<guid>18022764-d6e5-418b-8cbe-fc55f26ddeb1</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_WoodenBase_MetalHook.xml</path>
|
||||||
|
<guid>6c3812e2-c9ea-4082-b490-3e37cd6fa309</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_WoodenBase_MetalHook.xml</path>
|
||||||
|
<guid>430a1e73-b662-4970-a11f-41b318335b8d</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_WoodenBase_MetalHook.xml</path>
|
||||||
|
<guid>ac1e8170-8e0b-46c8-9775-0ffe59815a90</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_WoodenBase_MetalHook.xml</path>
|
||||||
|
<guid>b06f3d44-4662-4015-a9a9-423da95d4d03</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_WoodenBase_MetalHand.xml</path>
|
||||||
|
<guid>7ce57ea3-3396-408c-b10b-f8b171e3ee1b</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_WoodenBase_MetalHand.xml</path>
|
||||||
|
<guid>cb3f6114-be69-4c9b-b957-f3a1b7b29d76</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_WoodenBase_MetalHand.xml</path>
|
||||||
|
<guid>1c635807-4545-4764-b146-17f8311da9fb</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_WoodenBase_MetalHand.xml</path>
|
||||||
|
<guid>bc7ac81c-cc8d-4cca-846a-c60bad714bee</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_MetalBase_WoodenHook.xml</path>
|
||||||
|
<guid>67ee2e98-779a-441d-8222-cae988a4bf83</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_MetalBase_WoodenHook.xml</path>
|
||||||
|
<guid>3f84cd14-8caf-4b43-b5fc-19075cef431b</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_MetalBase_WoodenHook.xml</path>
|
||||||
|
<guid>bd04f7ab-200c-4631-844a-82720563bc4e</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_MetalBase_WoodenHook.xml</path>
|
||||||
|
<guid>fe78f39f-f123-4363-99e8-4f0a96b622fd</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_MetalBase_MetalHook.xml</path>
|
||||||
|
<guid>aa4d751d-dda9-49cb-8014-5c606769103f</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_MetalBase_MetalHook.xml</path>
|
||||||
|
<guid>86e48b70-05aa-4276-a754-719e5c49cf50</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_MetalBase_MetalHook.xml</path>
|
||||||
|
<guid>1cf57ca2-7bf5-4c18-8017-b4b7d3f60f9c</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_MetalBase_MetalHook.xml</path>
|
||||||
|
<guid>76548260-f719-4546-80bd-156606f47379</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_MetalBase_MetalHand.xml</path>
|
||||||
|
<guid>4fa41665-0db0-4cf0-bbb6-a8c7f1ed2ba7</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_MetalBase_MetalHand.xml</path>
|
||||||
|
<guid>051a6973-7634-4f0a-8bc2-3b0197db9236</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_MetalBase_MetalHand.xml</path>
|
||||||
|
<guid>0bc5357f-41b8-4149-a635-b364cc0e925c</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_MetalBase_MetalHand.xml</path>
|
||||||
|
<guid>018ff030-bf72-4658-a7ae-29a22cfab99b</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_LeatherBase_WoodenHook.xml</path>
|
||||||
|
<guid>d57f0188-2fd0-44d4-adb8-35810115a467</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_LeatherBase_WoodenHook.xml</path>
|
||||||
|
<guid>8c8521aa-5dda-4446-91ad-9ff138676b56</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_LeatherBase_WoodenHook.xml</path>
|
||||||
|
<guid>2cdd3791-2ca9-4327-816d-7f48cc106b32</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_LeatherBase_WoodenHook.xml</path>
|
||||||
|
<guid>505289a8-712c-4b9e-ba1c-d2a916c99ba8</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_LeatherBase_MetalHook.xml</path>
|
||||||
|
<guid>45980406-ff1e-480f-92b0-05502795799e</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_LeatherBase_MetalHook.xml</path>
|
||||||
|
<guid>a479cb20-54ba-49f2-9dcc-0be5c9026016</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_LeatherBase_MetalHook.xml</path>
|
||||||
|
<guid>36f5c1ea-8ef3-4ba0-9bcb-565ed80e1d2b</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_LeatherBase_MetalHook.xml</path>
|
||||||
|
<guid>cdf1f215-2eb7-4caa-a7fb-1c06470dd122</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_LeatherBase_MetalHand.xml</path>
|
||||||
|
<guid>4b60fa0c-5028-4035-a9ba-53d9ece5c26c</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_LeatherBase_MetalHand.xml</path>
|
||||||
|
<guid>2b81d029-7ba2-4f62-b2fc-ed2874064b67</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_LeatherBase_MetalHand.xml</path>
|
||||||
|
<guid>cd9339b5-38f6-4817-a810-f1b23b08d6d6</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_LeatherBase_MetalHand.xml</path>
|
||||||
|
<guid>c8460ab8-5ff3-4b2a-b233-dfa416d6130c</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_WoodenBase_WoodenHook.xml</path>
|
||||||
|
<guid>5e666510-59a4-4d01-b096-dd2ccc381ace</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_WoodenBase_WoodenHook.xml</path>
|
||||||
|
<guid>de809ecd-bad4-4392-912f-82bef2f955e0</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_WoodenBase_WoodenHook.xml</path>
|
||||||
|
<guid>878c9bb7-65c4-4882-b8e1-a00464e923c2</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_WoodenBase_WoodenHook.xml</path>
|
||||||
|
<guid>922ac868-8328-4db0-a855-9faaad70b4fe</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_WoodenBase_MetalHook.xml</path>
|
||||||
|
<guid>a6399346-6834-4305-be6d-42986a44b19b</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_WoodenBase_MetalHook.xml</path>
|
||||||
|
<guid>09826af7-ba1d-483b-aa0c-f0e0af0171bc</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_WoodenBase_MetalHook.xml</path>
|
||||||
|
<guid>72649e94-eaf2-414c-a314-531492fb8a77</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_WoodenBase_MetalHook.xml</path>
|
||||||
|
<guid>bd35c56f-0833-4589-9814-8e73049baf9b</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_WoodenBase_MetalHand.xml</path>
|
||||||
|
<guid>cba1dc62-beb1-4463-936e-23bf9f124a97</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_WoodenBase_MetalHand.xml</path>
|
||||||
|
<guid>ff47802d-b64c-4024-b404-049926ab0c88</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_WoodenBase_MetalHand.xml</path>
|
||||||
|
<guid>4f0b16e6-df19-4b81-8e53-5addb8d62d63</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_WoodenBase_MetalHand.xml</path>
|
||||||
|
<guid>e9d08964-8a0e-4f5c-b803-565231b42fcd</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_MetalBase_WoodenHook.xml</path>
|
||||||
|
<guid>4828986a-b6c3-472b-960e-9775d851e11f</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_MetalBase_WoodenHook.xml</path>
|
||||||
|
<guid>7fec909e-7a18-46fe-b101-06e03df41e3b</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_MetalBase_WoodenHook.xml</path>
|
||||||
|
<guid>cf1b61e3-c317-4b30-8370-e89da866c665</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_MetalBase_WoodenHook.xml</path>
|
||||||
|
<guid>21e5310e-e019-4ee3-9336-ca05f2f09d15</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_MetalBase_MetalHook.xml</path>
|
||||||
|
<guid>96269ef6-3e63-4394-9e61-f10219ad6474</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_MetalBase_MetalHook.xml</path>
|
||||||
|
<guid>af39a824-e8b8-4b6f-91dd-4f5970ffcc6d</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_MetalBase_MetalHook.xml</path>
|
||||||
|
<guid>d3f41d18-1849-4446-a0e6-4ccf318430b7</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_MetalBase_MetalHook.xml</path>
|
||||||
|
<guid>12398ee6-7835-4f42-86cf-fd308ea0994f</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_MetalBase_MetalHand.xml</path>
|
||||||
|
<guid>c102e410-5774-4032-96d1-7dd0807c987e</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_MetalBase_MetalHand.xml</path>
|
||||||
|
<guid>72f25654-e1f8-4c44-a63e-72c8e97e45ee</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_MetalBase_MetalHand.xml</path>
|
||||||
|
<guid>1c9195de-efa8-427e-833d-67a3ec055a83</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_MetalBase_MetalHand.xml</path>
|
||||||
|
<guid>4cb21720-0551-4b14-a796-97c7d0c33c06</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_LeatherBase_WoodenHook.xml</path>
|
||||||
|
<guid>b890d3cd-f999-45a9-a501-43158d38d5a3</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_LeatherBase_WoodenHook.xml</path>
|
||||||
|
<guid>cc73e01c-587f-4929-b367-23c752e848b5</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_LeatherBase_WoodenHook.xml</path>
|
||||||
|
<guid>62bce2a6-540e-473c-9f0c-f8a7384659bb</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_LeatherBase_WoodenHook.xml</path>
|
||||||
|
<guid>4f23729e-2304-4149-bd18-c2ca05794bda</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_LeatherBase_MetalHook.xml</path>
|
||||||
|
<guid>b86301fb-51cb-4cfe-ba1d-14d181fe2aaf</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_LeatherBase_MetalHook.xml</path>
|
||||||
|
<guid>cccd86ec-bbb9-40dc-8370-ef8f928650db</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_LeatherBase_MetalHook.xml</path>
|
||||||
|
<guid>8a829f56-b9ab-44b2-ab4f-5e988dd7f144</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_LeatherBase_MetalHook.xml</path>
|
||||||
|
<guid>de32b01d-ec3c-4c3e-80a4-49dfb763b959</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_Hand_LeatherBase_MetalHand.xml</path>
|
||||||
|
<guid>0097e116-6e5e-4597-8bf2-c71e87222e1e</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_Hand_LeatherBase_MetalHand.xml</path>
|
||||||
|
<guid>eed0d663-4862-4646-8ccd-7d73aa6b0489</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Left_LowerArm_LeatherBase_MetalHand.xml</path>
|
||||||
|
<guid>f7ef6867-a455-4504-a157-626ecd32af08</guid>
|
||||||
|
</files>
|
||||||
|
<files>
|
||||||
|
<path>media/clothing/clothingItems/Prost_Right_LowerArm_LeatherBase_MetalHand.xml</path>
|
||||||
|
<guid>e12307d2-672e-4c77-bcd6-af397455d7a9</guid>
|
||||||
|
</files>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_Hand_LeatherBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_Hand_LeatherBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>0097e116-6e5e-4597-8bf2-c71e87222e1e</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_Hand_LeatherBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_Hand_LeatherBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>b86301fb-51cb-4cfe-ba1d-14d181fe2aaf</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_Hand_LeatherBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_Hand_LeatherBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>b890d3cd-f999-45a9-a501-43158d38d5a3</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_Hand_MetalBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_Hand_MetalBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>c102e410-5774-4032-96d1-7dd0807c987e</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_Hand_MetalBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_Hand_MetalBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>96269ef6-3e63-4394-9e61-f10219ad6474</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_Hand_MetalBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_Hand_MetalBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>4828986a-b6c3-472b-960e-9775d851e11f</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_Hand_WoodenBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_Hand_WoodenBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>cba1dc62-beb1-4463-936e-23bf9f124a97</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_Hand_WoodenBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_Hand_WoodenBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>a6399346-6834-4305-be6d-42986a44b19b</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_Hand_WoodenBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_Hand_WoodenBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>5e666510-59a4-4d01-b096-dd2ccc381ace</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_LowerArm_LeatherBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_LowerArm_LeatherBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>f7ef6867-a455-4504-a157-626ecd32af08</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_LowerArm_LeatherBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_LowerArm_LeatherBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>8a829f56-b9ab-44b2-ab4f-5e988dd7f144</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_LowerArm_LeatherBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_LowerArm_LeatherBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>62bce2a6-540e-473c-9f0c-f8a7384659bb</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_LowerArm_MetalBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_LowerArm_MetalBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>1c9195de-efa8-427e-833d-67a3ec055a83</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_LowerArm_MetalBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_LowerArm_MetalBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>d3f41d18-1849-4446-a0e6-4ccf318430b7</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_LowerArm_MetalBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_LowerArm_MetalBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>cf1b61e3-c317-4b30-8370-e89da866c665</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_LowerArm_WoodenBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_LowerArm_WoodenBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>4f0b16e6-df19-4b81-8e53-5addb8d62d63</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_LowerArm_WoodenBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_LowerArm_WoodenBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>72649e94-eaf2-414c-a314-531492fb8a77</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_LowerArm_WoodenBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_LowerArm_WoodenBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>878c9bb7-65c4-4882-b8e1-a00464e923c2</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_Hand_LeatherBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_Hand_LeatherBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>eed0d663-4862-4646-8ccd-7d73aa6b0489</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_Hand_LeatherBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_Hand_LeatherBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>cccd86ec-bbb9-40dc-8370-ef8f928650db</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_Hand_LeatherBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_Hand_LeatherBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>cc73e01c-587f-4929-b367-23c752e848b5</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_Hand_MetalBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_Hand_MetalBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>72f25654-e1f8-4c44-a63e-72c8e97e45ee</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_Hand_MetalBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_Hand_MetalBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>af39a824-e8b8-4b6f-91dd-4f5970ffcc6d</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_Hand_MetalBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_Hand_MetalBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>7fec909e-7a18-46fe-b101-06e03df41e3b</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_Hand_WoodenBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_Hand_WoodenBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>ff47802d-b64c-4024-b404-049926ab0c88</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_Hand_WoodenBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_Hand_WoodenBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>09826af7-ba1d-483b-aa0c-f0e0af0171bc</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_Hand_WoodenBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_Hand_WoodenBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>de809ecd-bad4-4392-912f-82bef2f955e0</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_LowerArm_LeatherBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_LowerArm_LeatherBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>e12307d2-672e-4c77-bcd6-af397455d7a9</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_LowerArm_LeatherBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_LowerArm_LeatherBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>de32b01d-ec3c-4c3e-80a4-49dfb763b959</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_LowerArm_LeatherBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_LowerArm_LeatherBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>4f23729e-2304-4149-bd18-c2ca05794bda</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_LowerArm_MetalBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_LowerArm_MetalBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>4cb21720-0551-4b14-a796-97c7d0c33c06</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_LowerArm_MetalBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_LowerArm_MetalBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>12398ee6-7835-4f42-86cf-fd308ea0994f</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_LowerArm_MetalBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_LowerArm_MetalBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>21e5310e-e019-4ee3-9336-ca05f2f09d15</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_LowerArm_WoodenBase_MetalHand_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_LowerArm_WoodenBase_MetalHand_Female</m_FemaleModel>
|
||||||
|
<m_GUID>e9d08964-8a0e-4f5c-b803-565231b42fcd</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_LowerArm_WoodenBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_LowerArm_WoodenBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>bd35c56f-0833-4589-9814-8e73049baf9b</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_LowerArm_WoodenBase_WoodenHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_LowerArm_WoodenBase_WoodenHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>922ac868-8328-4db0-a855-9faaad70b4fe</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Amputations\Upperarm\skin01_b</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -1,588 +1,99 @@
|
|||||||
item Prost_WoodenBase_WoodenHook
|
item WoodenBase_WoodenHook
|
||||||
{
|
{
|
||||||
Weight = 0.90,
|
Weight = 0.90,
|
||||||
Type = Clothing,
|
Type = Normal,
|
||||||
DisplayCategory = Prosthesis,
|
DisplayCategory = Prosthesis,
|
||||||
DisplayName = Prosthesis - Wooden Base and Wooden Hook,
|
DisplayName = Prosthesis - Wooden Base and Wooden Hook,
|
||||||
ClothingItem = Prost_Left_Hand_WoodenBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
Icon = metalLeg,
|
||||||
Tooltip = TempTooltip,
|
Tooltip = TempTooltip,
|
||||||
CanHaveHoles = false,
|
CanHaveHoles = false,
|
||||||
|
WorldStaticModel = TOC.MetalHook,
|
||||||
}
|
}
|
||||||
item Prost_WoodenBase_WoodenHook
|
item WoodenBase_MetalHook
|
||||||
{
|
|
||||||
Weight = 0.90,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Wooden Base and Wooden Hook,
|
|
||||||
ClothingItem = Prost_Right_Hand_WoodenBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_WoodenBase_WoodenHook
|
|
||||||
{
|
|
||||||
Weight = 0.90,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Wooden Base and Wooden Hook,
|
|
||||||
ClothingItem = Prost_Left_LowerArm_WoodenBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_WoodenBase_WoodenHook
|
|
||||||
{
|
|
||||||
Weight = 0.90,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Wooden Base and Wooden Hook,
|
|
||||||
ClothingItem = Prost_Right_LowerArm_WoodenBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_WoodenBase_MetalHook
|
|
||||||
{
|
{
|
||||||
Weight = 1.20,
|
Weight = 1.20,
|
||||||
Type = Clothing,
|
Type = Normal,
|
||||||
DisplayCategory = Prosthesis,
|
DisplayCategory = Prosthesis,
|
||||||
DisplayName = Prosthesis - Wooden Base and Metal Hook,
|
DisplayName = Prosthesis - Wooden Base and Metal Hook,
|
||||||
ClothingItem = Prost_Left_Hand_WoodenBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
Icon = metalLeg,
|
||||||
Tooltip = TempTooltip,
|
Tooltip = TempTooltip,
|
||||||
CanHaveHoles = false,
|
CanHaveHoles = false,
|
||||||
|
WorldStaticModel = TOC.MetalHook,
|
||||||
}
|
}
|
||||||
item Prost_WoodenBase_MetalHook
|
item WoodenBase_MetalHand
|
||||||
{
|
|
||||||
Weight = 1.20,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Wooden Base and Metal Hook,
|
|
||||||
ClothingItem = Prost_Right_Hand_WoodenBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_WoodenBase_MetalHook
|
|
||||||
{
|
|
||||||
Weight = 1.20,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Wooden Base and Metal Hook,
|
|
||||||
ClothingItem = Prost_Left_LowerArm_WoodenBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_WoodenBase_MetalHook
|
|
||||||
{
|
|
||||||
Weight = 1.20,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Wooden Base and Metal Hook,
|
|
||||||
ClothingItem = Prost_Right_LowerArm_WoodenBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_WoodenBase_MetalHand
|
|
||||||
{
|
{
|
||||||
Weight = 1.40,
|
Weight = 1.40,
|
||||||
Type = Clothing,
|
Type = Normal,
|
||||||
DisplayCategory = Prosthesis,
|
DisplayCategory = Prosthesis,
|
||||||
DisplayName = Prosthesis - Wooden Base and Metal Hand,
|
DisplayName = Prosthesis - Wooden Base and Metal Hand,
|
||||||
ClothingItem = Prost_Left_Hand_WoodenBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
Icon = metalLeg,
|
||||||
Tooltip = TempTooltip,
|
Tooltip = TempTooltip,
|
||||||
CanHaveHoles = false,
|
CanHaveHoles = false,
|
||||||
|
WorldStaticModel = TOC.MetalHook,
|
||||||
}
|
}
|
||||||
item Prost_WoodenBase_MetalHand
|
item MetalBase_WoodenHook
|
||||||
{
|
{
|
||||||
Weight = 1.40,
|
Weight = 1.40,
|
||||||
Type = Clothing,
|
Type = Normal,
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Wooden Base and Metal Hand,
|
|
||||||
ClothingItem = Prost_Right_Hand_WoodenBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_WoodenBase_MetalHand
|
|
||||||
{
|
|
||||||
Weight = 1.40,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Wooden Base and Metal Hand,
|
|
||||||
ClothingItem = Prost_Left_LowerArm_WoodenBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_WoodenBase_MetalHand
|
|
||||||
{
|
|
||||||
Weight = 1.40,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Wooden Base and Metal Hand,
|
|
||||||
ClothingItem = Prost_Right_LowerArm_WoodenBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_MetalBase_WoodenHook
|
|
||||||
{
|
|
||||||
Weight = 1.40,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
DisplayCategory = Prosthesis,
|
||||||
DisplayName = Prosthesis - Metal Base and Wooden Hook,
|
DisplayName = Prosthesis - Metal Base and Wooden Hook,
|
||||||
ClothingItem = Prost_Left_Hand_MetalBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
Icon = metalLeg,
|
||||||
Tooltip = TempTooltip,
|
Tooltip = TempTooltip,
|
||||||
CanHaveHoles = false,
|
CanHaveHoles = false,
|
||||||
|
WorldStaticModel = TOC.MetalHook,
|
||||||
}
|
}
|
||||||
item Prost_MetalBase_WoodenHook
|
item MetalBase_MetalHook
|
||||||
{
|
|
||||||
Weight = 1.40,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Metal Base and Wooden Hook,
|
|
||||||
ClothingItem = Prost_Right_Hand_MetalBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_MetalBase_WoodenHook
|
|
||||||
{
|
|
||||||
Weight = 1.40,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Metal Base and Wooden Hook,
|
|
||||||
ClothingItem = Prost_Left_LowerArm_MetalBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_MetalBase_WoodenHook
|
|
||||||
{
|
|
||||||
Weight = 1.40,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Metal Base and Wooden Hook,
|
|
||||||
ClothingItem = Prost_Right_LowerArm_MetalBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_MetalBase_MetalHook
|
|
||||||
{
|
{
|
||||||
Weight = 1.70,
|
Weight = 1.70,
|
||||||
Type = Clothing,
|
Type = Normal,
|
||||||
DisplayCategory = Prosthesis,
|
DisplayCategory = Prosthesis,
|
||||||
DisplayName = Prosthesis - Metal Base and Metal Hook,
|
DisplayName = Prosthesis - Metal Base and Metal Hook,
|
||||||
ClothingItem = Prost_Left_Hand_MetalBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
Icon = metalLeg,
|
||||||
Tooltip = TempTooltip,
|
Tooltip = TempTooltip,
|
||||||
CanHaveHoles = false,
|
CanHaveHoles = false,
|
||||||
|
WorldStaticModel = TOC.MetalHook,
|
||||||
}
|
}
|
||||||
item Prost_MetalBase_MetalHook
|
item MetalBase_MetalHand
|
||||||
{
|
|
||||||
Weight = 1.70,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Metal Base and Metal Hook,
|
|
||||||
ClothingItem = Prost_Right_Hand_MetalBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_MetalBase_MetalHook
|
|
||||||
{
|
|
||||||
Weight = 1.70,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Metal Base and Metal Hook,
|
|
||||||
ClothingItem = Prost_Left_LowerArm_MetalBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_MetalBase_MetalHook
|
|
||||||
{
|
|
||||||
Weight = 1.70,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Metal Base and Metal Hook,
|
|
||||||
ClothingItem = Prost_Right_LowerArm_MetalBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_MetalBase_MetalHand
|
|
||||||
{
|
{
|
||||||
Weight = 1.90,
|
Weight = 1.90,
|
||||||
Type = Clothing,
|
Type = Normal,
|
||||||
DisplayCategory = Prosthesis,
|
DisplayCategory = Prosthesis,
|
||||||
DisplayName = Prosthesis - Metal Base and Metal Hand,
|
DisplayName = Prosthesis - Metal Base and Metal Hand,
|
||||||
ClothingItem = Prost_Left_Hand_MetalBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
Icon = metalLeg,
|
||||||
Tooltip = TempTooltip,
|
Tooltip = TempTooltip,
|
||||||
CanHaveHoles = false,
|
CanHaveHoles = false,
|
||||||
|
WorldStaticModel = TOC.MetalHook,
|
||||||
}
|
}
|
||||||
item Prost_MetalBase_MetalHand
|
item LeatherBase_WoodenHook
|
||||||
{
|
|
||||||
Weight = 1.90,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Metal Base and Metal Hand,
|
|
||||||
ClothingItem = Prost_Right_Hand_MetalBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_MetalBase_MetalHand
|
|
||||||
{
|
|
||||||
Weight = 1.90,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Metal Base and Metal Hand,
|
|
||||||
ClothingItem = Prost_Left_LowerArm_MetalBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_MetalBase_MetalHand
|
|
||||||
{
|
|
||||||
Weight = 1.90,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Metal Base and Metal Hand,
|
|
||||||
ClothingItem = Prost_Right_LowerArm_MetalBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_LeatherBase_WoodenHook
|
|
||||||
{
|
{
|
||||||
Weight = 1.20,
|
Weight = 1.20,
|
||||||
Type = Clothing,
|
Type = Normal,
|
||||||
DisplayCategory = Prosthesis,
|
DisplayCategory = Prosthesis,
|
||||||
DisplayName = Prosthesis - Leather Base and Wooden Hook,
|
DisplayName = Prosthesis - Leather Base and Wooden Hook,
|
||||||
ClothingItem = Prost_Left_Hand_LeatherBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
Icon = metalLeg,
|
||||||
Tooltip = TempTooltip,
|
Tooltip = TempTooltip,
|
||||||
CanHaveHoles = false,
|
CanHaveHoles = false,
|
||||||
|
WorldStaticModel = TOC.MetalHook,
|
||||||
}
|
}
|
||||||
item Prost_LeatherBase_WoodenHook
|
item LeatherBase_MetalHook
|
||||||
{
|
|
||||||
Weight = 1.20,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Leather Base and Wooden Hook,
|
|
||||||
ClothingItem = Prost_Right_Hand_LeatherBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_LeatherBase_WoodenHook
|
|
||||||
{
|
|
||||||
Weight = 1.20,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Leather Base and Wooden Hook,
|
|
||||||
ClothingItem = Prost_Left_LowerArm_LeatherBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_LeatherBase_WoodenHook
|
|
||||||
{
|
|
||||||
Weight = 1.20,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Leather Base and Wooden Hook,
|
|
||||||
ClothingItem = Prost_Right_LowerArm_LeatherBase_WoodenHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_LeatherBase_MetalHook
|
|
||||||
{
|
{
|
||||||
Weight = 1.50,
|
Weight = 1.50,
|
||||||
Type = Clothing,
|
Type = Normal,
|
||||||
DisplayCategory = Prosthesis,
|
DisplayCategory = Prosthesis,
|
||||||
DisplayName = Prosthesis - Leather Base and Metal Hook,
|
DisplayName = Prosthesis - Leather Base and Metal Hook,
|
||||||
ClothingItem = Prost_Left_Hand_LeatherBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
Icon = metalLeg,
|
||||||
Tooltip = TempTooltip,
|
Tooltip = TempTooltip,
|
||||||
CanHaveHoles = false,
|
CanHaveHoles = false,
|
||||||
|
WorldStaticModel = TOC.MetalHook,
|
||||||
}
|
}
|
||||||
item Prost_LeatherBase_MetalHook
|
item LeatherBase_MetalHand
|
||||||
{
|
|
||||||
Weight = 1.50,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Leather Base and Metal Hook,
|
|
||||||
ClothingItem = Prost_Right_Hand_LeatherBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_LeatherBase_MetalHook
|
|
||||||
{
|
|
||||||
Weight = 1.50,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Leather Base and Metal Hook,
|
|
||||||
ClothingItem = Prost_Left_LowerArm_LeatherBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_LeatherBase_MetalHook
|
|
||||||
{
|
|
||||||
Weight = 1.50,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Leather Base and Metal Hook,
|
|
||||||
ClothingItem = Prost_Right_LowerArm_LeatherBase_MetalHook,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_LeatherBase_MetalHand
|
|
||||||
{
|
{
|
||||||
Weight = 1.70,
|
Weight = 1.70,
|
||||||
Type = Clothing,
|
Type = Normal,
|
||||||
DisplayCategory = Prosthesis,
|
DisplayCategory = Prosthesis,
|
||||||
DisplayName = Prosthesis - Leather Base and Metal Hand,
|
DisplayName = Prosthesis - Leather Base and Metal Hand,
|
||||||
ClothingItem = Prost_Left_Hand_LeatherBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
Icon = metalLeg,
|
||||||
Tooltip = TempTooltip,
|
Tooltip = TempTooltip,
|
||||||
CanHaveHoles = false,
|
CanHaveHoles = false,
|
||||||
}
|
WorldStaticModel = TOC.MetalHook,
|
||||||
item Prost_LeatherBase_MetalHand
|
|
||||||
{
|
|
||||||
Weight = 1.70,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Leather Base and Metal Hand,
|
|
||||||
ClothingItem = Prost_Right_Hand_LeatherBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_LeatherBase_MetalHand
|
|
||||||
{
|
|
||||||
Weight = 1.70,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Leather Base and Metal Hand,
|
|
||||||
ClothingItem = Prost_Left_LowerArm_LeatherBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmLeftProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item Prost_LeatherBase_MetalHand
|
|
||||||
{
|
|
||||||
Weight = 1.70,
|
|
||||||
Type = Clothing,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Prosthesis - Leather Base and Metal Hand,
|
|
||||||
ClothingItem = Prost_Right_LowerArm_LeatherBase_MetalHand,
|
|
||||||
BodyLocation = TOC_ArmRightProsthesis,
|
|
||||||
BloodLocation = Hands,
|
|
||||||
Icon = metalLeg,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_WoodenBase
|
|
||||||
{
|
|
||||||
Weight = 0.70,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Wooden Base,
|
|
||||||
Icon = ProstTestBase,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_MetalBase
|
|
||||||
{
|
|
||||||
Weight = 1.20,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Metal Base,
|
|
||||||
Icon = ProstTestBase,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_LeatherBase
|
|
||||||
{
|
|
||||||
Weight = 1.00,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Leather Base,
|
|
||||||
Icon = ProstTestBase,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_WoodenHook
|
|
||||||
{
|
|
||||||
Weight = 0.20,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Wooden Hook,
|
|
||||||
Icon = ProstTestTop,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_MetalHook
|
|
||||||
{
|
|
||||||
Weight = 0.50,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Metal Hook,
|
|
||||||
Icon = ProstTestTop,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_MetalHand
|
|
||||||
{
|
|
||||||
Weight = 0.70,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Metal Hand,
|
|
||||||
Icon = ProstTestTop,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_WoodenBase
|
|
||||||
{
|
|
||||||
Weight = 0.70,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Wooden Base,
|
|
||||||
Icon = ProstTestBase,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_MetalBase
|
|
||||||
{
|
|
||||||
Weight = 1.20,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Metal Base,
|
|
||||||
Icon = ProstTestBase,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_LeatherBase
|
|
||||||
{
|
|
||||||
Weight = 1.00,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Leather Base,
|
|
||||||
Icon = ProstTestBase,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_WoodenHook
|
|
||||||
{
|
|
||||||
Weight = 0.20,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Wooden Hook,
|
|
||||||
Icon = ProstTestTop,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_MetalHook
|
|
||||||
{
|
|
||||||
Weight = 0.50,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Metal Hook,
|
|
||||||
Icon = ProstTestTop,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
|
||||||
item ProstPart_MetalHand
|
|
||||||
{
|
|
||||||
Weight = 0.70,
|
|
||||||
Type = Normal,
|
|
||||||
DisplayCategory = Prosthesis,
|
|
||||||
DisplayName = Metal Hand,
|
|
||||||
Icon = ProstTestTop,
|
|
||||||
Tooltip = TempTooltip,
|
|
||||||
CanHaveHoles = false,
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Left_Hand_MetalHand_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Left_Hand_MetalHand_Female</m_FemaleModel>
|
|
||||||
<m_GUID>2101af26-54b9-455b-abc0-7533ce37f84b</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\metal_base</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Left_Hand_Hook_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Left_Hand_Hook_Female</m_FemaleModel>
|
|
||||||
<m_GUID>6b4f4e13-d51f-48ab-80b0-6e0923650fc4</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\metal_base</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Left_Hand_Hook_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Left_Hand_Hook_Female</m_FemaleModel>
|
|
||||||
<m_GUID>0def629e-fe4f-4485-bdae-2d6032e150be</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\wood_base</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Left_LowerArm_LeatherBase_MetalHook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Left_LowerArm_LeatherBase_MetalHook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>129ee688-d4bb-4297-8eb2-f88974001217</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Prosthesis\metal_hook_male</textureChoices>
|
||||||
|
<textureChoices>Prosthesis\metal_hook_female</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Left_LowerArm_MetalHand_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Left_LowerArm_MetalHand_Female</m_FemaleModel>
|
|
||||||
<m_GUID>0405a4c0-f71b-45a8-9edc-489fc81dca39</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\metal_base</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Left_LowerArm_Hook_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Left_LowerArm_Hook_Female</m_FemaleModel>
|
|
||||||
<m_GUID>129ee688-d4bb-4297-8eb2-f88974001217</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\metal_hook_male</textureChoices>
|
|
||||||
<textureChoices>Prosthesis\metal_hook_female</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Left_LowerArm_Hook_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Left_LowerArm_Hook_Female</m_FemaleModel>
|
|
||||||
<m_GUID>aea8e02a-cba0-48d0-9eb0-7087651306b0</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\wood_hook_male</textureChoices>
|
|
||||||
<textureChoices>Prosthesis\wood_hook_female</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Right_Hand_MetalHand_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Right_Hand_MetalHand_Female</m_FemaleModel>
|
|
||||||
<m_GUID>731c280a-9682-4e2e-84cf-470bf00dd02f</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\metal_base</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Right_Hand_Hook_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Right_Hand_Hook_Female</m_FemaleModel>
|
|
||||||
<m_GUID>dd7b749b-7e81-4547-91b0-81b1a1e9f7b8</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\metal_base</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Right_Hand_Hook_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Right_Hand_Hook_Female</m_FemaleModel>
|
|
||||||
<m_GUID>1fcc7523-d577-4cb0-a019-f077ef281d3a</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\wood_base</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<clothingItem>
|
||||||
|
<m_MaleModel>Prost_Right_LowerArm_Hook_Male</m_MaleModel>
|
||||||
|
<m_FemaleModel>Prost_Right_LowerArm_Hook_Female</m_FemaleModel>
|
||||||
|
<m_GUID>1eb56768-d7ef-46e4-ac07-91d0e43d15fb</m_GUID>
|
||||||
|
<m_Static>false</m_Static>
|
||||||
|
<m_AllowRandomTint>false</m_AllowRandomTint>
|
||||||
|
<textureChoices>Prosthesis\metal_hook_male</textureChoices>
|
||||||
|
<textureChoices>Prosthesis\metal_hook_female</textureChoices>
|
||||||
|
</clothingItem>
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Right_LowerArm_MetalHand_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Right_LowerArm_MetalHand_Female</m_FemaleModel>
|
|
||||||
<m_GUID>27758f1e-6298-42eb-b027-b9be31465c11</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\metal_base</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Right_LowerArm_Hook_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Right_LowerArm_Hook_Female</m_FemaleModel>
|
|
||||||
<m_GUID>1eb56768-d7ef-46e4-ac07-91d0e43d15fb</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\metal_hook_male</textureChoices>
|
|
||||||
<textureChoices>Prosthesis\metal_hook_female</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<clothingItem>
|
|
||||||
<m_MaleModel>Prost_Right_LowerArm_Hook_Male</m_MaleModel>
|
|
||||||
<m_FemaleModel>Prost_Right_LowerArm_Hook_Female</m_FemaleModel>
|
|
||||||
<m_GUID>714b78a7-8895-4f48-a29d-b6f12909db0e</m_GUID>
|
|
||||||
<m_Static>false</m_Static>
|
|
||||||
<m_AllowRandomHue>false</m_AllowRandomHue>
|
|
||||||
<m_AllowRandomTint>false</m_AllowRandomTint>
|
|
||||||
<textureChoices>Prosthesis\wood_hook_male</textureChoices>
|
|
||||||
<textureChoices>Prosthesis\wood_hook_female</textureChoices>
|
|
||||||
</clothingItem>
|
|
||||||
@@ -32,12 +32,12 @@ function TOC_LocalActions.Operate(_, player, partName, useOven)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- TODO This is gonna get deleted
|
|
||||||
function TOC_LocalActions.EquipProsthesis(_, player, partName)
|
function TOC_LocalActions.EquipProsthesis(_, player, partName)
|
||||||
local surgeonInv = player:getInventory()
|
local surgeonInv = player:getInventory()
|
||||||
local prosthesisToEquip = surgeonInv:getItemFromType('TOC.MetalHand') or
|
|
||||||
surgeonInv:getItemFromType('TOC.MetalHook') or
|
|
||||||
surgeonInv:getItemFromType('TOC.WoodenHook')
|
-- TODO Find a better way to filter objects. Disabled for now and only gets LeatherBase
|
||||||
|
local prosthesisToEquip = surgeonInv:getItemFromType('TOC.ProstNormal_LeatherBase_MetalHook')
|
||||||
if prosthesisToEquip then
|
if prosthesisToEquip then
|
||||||
ISTimedActionQueue.add(TOC_InstallProsthesisAction:new(player, player, prosthesisToEquip, partName))
|
ISTimedActionQueue.add(TOC_InstallProsthesisAction:new(player, player, prosthesisToEquip, partName))
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -78,6 +78,10 @@ function GenerateEquippedProsthesis(prosthesisItem, inventory, limb)
|
|||||||
-- durability_top, speed_top = GetProsthesisStats(top_table, prosthesis_name)
|
-- durability_top, speed_top = GetProsthesisStats(top_table, prosthesis_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
local equippedProsthesisName = TocFindCorrectClothingProsthesis()
|
||||||
|
|
||||||
|
|
||||||
local equippedProsthesis = inventory:AddItem(prosthesisName)
|
local equippedProsthesis = inventory:AddItem(prosthesisName)
|
||||||
equippedProsthesis:setCondition(prosthesisItem:getCondition())
|
equippedProsthesis:setCondition(prosthesisItem:getCondition())
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
BIN
media/models_X/WorldItems/MetalHook.fbx
Normal file
BIN
media/models_X/WorldItems/MetalHook.fbx
Normal file
Binary file not shown.
BIN
media/models_X/WorldItems/Prostetic1_.fbx
Normal file
BIN
media/models_X/WorldItems/Prostetic1_.fbx
Normal file
Binary file not shown.
BIN
media/models_X/WorldItems/Prosthetic1_Hook.fbx
Normal file
BIN
media/models_X/WorldItems/Prosthetic1_Hook.fbx
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@ module TOC
|
|||||||
{
|
{
|
||||||
model MetalHook
|
model MetalHook
|
||||||
{
|
{
|
||||||
mesh = WorldItems/hook,
|
mesh = WorldItems/Prosthetic1_Hook,
|
||||||
texture = WorldItems/metal,
|
texture = WorldItems/metal,
|
||||||
scale = 0.15,
|
scale = 0.15,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user