diff --git a/data/Goats_mods/Primitive_Survival/Items/Clothing/Leather_clothing.json b/data/Goats_mods/Primitive_Survival/Items/Clothing/Leather_clothing.json new file mode 100644 index 000000000..3e37bbbc1 --- /dev/null +++ b/data/Goats_mods/Primitive_Survival/Items/Clothing/Leather_clothing.json @@ -0,0 +1,123 @@ +[ + { + "id": "cap_leather", + "type": "ARMOR", + "name": { "str": "leather cap" }, + "description": "A simple round cap. Its brim helps keep the sun out of your eyes.", + "weight": "92 g", + "volume": "250 ml", + "price": "15 USD", + "price_postapoc": "80 cent", + "material": [ "leather" ], + "symbol": "[", + "looks_like": "cowboy_hat", + "color": "white", + "warmth": 5, + "material_thickness": 0.3, + "environmental_protection": 1, + "flags": [ "VARSIZE", "SUN_GLASSES" ], + "armor": [ + { + "encumbrance_modifiers": [ "NONE" ], + "coverage": 100, + "covers": [ "head" ], + "specifically_covers": [ "head_crown", "head_forehead" ] + } + ] + }, + { + "id": "shirt_leather", + "type": "ARMOR", + "name": { "str": "leather shirt" }, + "description": "A simple leather shirt. Worn beneath your regular clothes, it provides a little extra warmth.", + "weight": "92 g", + "volume": "250 ml", + "price": "10 USD", + "price_postapoc": "50 cent", + "material": [ "leather" ], + "symbol": "[", + "looks_like": "tshirt", + "color": "white", + "warmth": 5, + "material_thickness": 0.1, + "flags": [ "VARSIZE", "SKINTIGHT" ], + "armor": [ + { "covers": [ "torso" ], "specifically_covers": [ "torso_lower" ], "coverage": 100 }, + { "covers": [ "torso" ], "specifically_covers": [ "torso_upper" ], "coverage": 90 } + ] + }, + { + "id": "leggings_leather", + "type": "ARMOR", + "name": { "str": "leather leggings", "str_pl": "pairs of leather leggings" }, + "description": "Skin-tight leather leggings, sometimes used when exercising, that keep your legs nice and warm.", + "weight": "92 g", + "volume": "250 ml", + "price": "10 USD", + "price_postapoc": "50 cent", + "material": [ "leather" ], + "symbol": "[", + "looks_like": "leg_warmers", + "color": "white", + "warmth": 20, + "material_thickness": 0.1, + "flags": [ "VARSIZE", "SKINTIGHT", "WATER_FRIENDLY" ], + "armor": [ { "coverage": 100, "covers": [ "leg_l", "leg_r" ] } ] + }, + { + "id": "jacket_leather", + "type": "ARMOR", + "name": { "str": "leather jacket" }, + "description": "A jacket made from leather.", + "weight": "500 g", + "volume": "3250 ml", + "price": "80 USD", + "price_postapoc": "7 USD 50 cent", + "material": [ "leather" ], + "symbol": "[", + "looks_like": "jacket_windbreaker", + "color": "light_blue", + "armor": [ + { "covers": [ "torso" ], "specifically_covers": [ "torso_lower" ], "coverage": 100, "encumbrance": [ 8, 10 ] }, + { "covers": [ "torso" ], "specifically_covers": [ "torso_upper" ], "coverage": 95 }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 8, 8 ] } + ], + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1500 ml", + "max_contains_weight": "2 kg", + "max_item_length": "15 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1500 ml", + "max_contains_weight": "2 kg", + "max_item_length": "15 cm", + "moves": 80 + } + ], + "warmth": 25, + "material_thickness": 0.95, + "flags": [ "VARSIZE", "POCKETS", "OUTER" ] + }, + { + "id": "gloves_leather", + "type": "ARMOR", + "name": { "str": "pair of leather gloves", "str_pl": "pairs of leather gloves" }, + "description": "A pair of leather gloves.", + "weight": "160 g", + "volume": "270 ml", + "price": "60 USD", + "price_postapoc": "1 USD 40 cent", + "material": [ "leather" ], + "symbol": "[", + "looks_like": "gloves_medical", + "color": "dark_gray", + "material_thickness": 0.5, + "environmental_protection": 4, + "flags": [ "WATER_FRIENDLY", "WATERPROOF" ], + "armor": [ { "encumbrance": 15, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] + } +] diff --git a/data/Goats_mods/Primitive_Survival/Primitive-readme.md b/data/Goats_mods/Primitive_Survival/Primitive-readme.md index 7106a2054..6d1031d0c 100644 --- a/data/Goats_mods/Primitive_Survival/Primitive-readme.md +++ b/data/Goats_mods/Primitive_Survival/Primitive-readme.md @@ -472,11 +472,11 @@ deconstruct pile of leaves to get leaves ATM. *Leather clothing:* ```markdown -- [ ] Leather cap -- [ ] Leather shirt -- [ ] Leather leggings -- [ ] Leather Jacket -- [ ] Leather Gloves +- [x] Leather cap +- [x] Leather shirt +- [x] Leather leggings +- [x] Leather Jacket +- [x] Leather Gloves ``` diff --git a/data/Goats_mods/Primitive_Survival/Recipes/Clothing_leather.json b/data/Goats_mods/Primitive_Survival/Recipes/Clothing_leather.json new file mode 100644 index 000000000..8a85fa04e --- /dev/null +++ b/data/Goats_mods/Primitive_Survival/Recipes/Clothing_leather.json @@ -0,0 +1,72 @@ +[ + { + "result": "cap_leather", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_ARMOR", + "subcategory": "CSC_ARMOR_HEAD", + "skill_used": "tailor", + "difficulty": 1, + "time": "600 m", + "autolearn": true, + "byproducts": [ [ "scrap_leather", 50 ] ], + "using": [ [ "sewing_standard", 20 ] ], + "components": [ [ [ "leather", 1 ] ], [ [ "cordage", 1, "LIST" ], [ "filament", 60, "LIST" ] ] ] + }, + { + "result": "shirt_leather", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_ARMOR", + "subcategory": "CSC_ARMOR_TORSO", + "skill_used": "tailor", + "difficulty": 1, + "time": "600 m", + "autolearn": true, + "byproducts": [ [ "scrap_leather", 50 ] ], + "using": [ [ "sewing_standard", 30 ] ], + "components": [ [ [ "leather", 1 ] ], [ [ "cordage", 1, "LIST" ], [ "filament", 120, "LIST" ] ] ] + }, + { + "result": "leggings_leather", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_ARMOR", + "subcategory": "CSC_ARMOR_LEGS", + "skill_used": "tailor", + "difficulty": 1, + "time": "600 m", + "autolearn": true, + "byproducts": [ [ "scrap_leather", 50 ] ], + "using": [ [ "sewing_standard", 40 ] ], + "components": [ [ [ "leather", 2 ] ], [ [ "cordage", 1, "LIST" ], [ "filament", 60, "LIST" ] ] ] + }, + { + "result": "jacket_leather", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_ARMOR", + "subcategory": "CSC_ARMOR_TORSO", + "skill_used": "tailor", + "difficulty": 1, + "time": "600 m", + "autolearn": true, + "byproducts": [ [ "scrap_leather", 50 ] ], + "using": [ [ "sewing_standard", 20 ] ], + "components": [ [ [ "leather", 2 ] ], [ [ "cordage", 1, "LIST" ], [ "filament", 60, "LIST" ] ] ] + }, + { + "result": "gloves_leather", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_ARMOR", + "subcategory": "CSC_ARMOR_HANDS", + "skill_used": "tailor", + "difficulty": 1, + "time": "600 m", + "autolearn": true, + "byproducts": [ [ "scrap_leather", 50 ] ], + "using": [ [ "sewing_standard", 20 ] ], + "components": [ [ [ "leather", 1 ] ], [ [ "cordage", 1, "LIST" ], [ "filament", 60, "LIST" ] ] ] + } +]