diff --git a/data/json/professions.json b/data/json/professions.json index 50d74736f258a..0b10c92c6f8d9 100644 --- a/data/json/professions.json +++ b/data/json/professions.json @@ -598,6 +598,7 @@ "id": "mechanic", "name": "Home Mechanic", "description": "You've always loved cars, and there's nothing like getting under the hood and fixing it yourself. You've kept hold of some handy tools for the job, and at least now you'll never want for parts.", + "proficiencies": [ "prof_metalworking", "prof_welding_basic" ], "points": 2, "skills": [ { "level": 3, "name": "mechanics" }, { "level": 1, "name": "driving" } ], "items": { @@ -1519,6 +1520,7 @@ "name": { "male": "Handy Man", "female": "Handy Woman" }, "description": "You used to work at a local hardware store, and you did plenty of home renovations yourself. Now you look out at the horizon of a ruined world, and wonder - are your meager skills, and the few supplies you grabbed on the way out, sufficient to help rebuild?", "points": 1, + "proficiencies": [ "prof_plumbing" ], "skills": [ { "level": 2, "name": "fabrication" }, { "level": 1, "name": "lockpick" } ], "items": { "both": { @@ -2264,7 +2266,7 @@ "description": "You ran into trouble coming out of class at your community college's metalsmithing program, but despite the havoc you've managed to keep ahold of some of the equipment you were carrying.", "points": 1, "skills": [ { "level": 4, "name": "fabrication" } ], - "proficiencies": [ "prof_blacksmithing" ], + "proficiencies": [ "prof_metalworking", "prof_blacksmithing" ], "items": { "both": { "items": [ "jeans", "socks", "boots", "tank_top", "apron_leather", "fire_gauntlets", "wristwatch", "hammer" ], diff --git a/data/json/proficiencies/metalwork.json b/data/json/proficiencies/metalwork.json new file mode 100644 index 0000000000000..dcea2a5fc4f33 --- /dev/null +++ b/data/json/proficiencies/metalwork.json @@ -0,0 +1,73 @@ +[ + { + "type": "proficiency", + "id": "prof_metalworking", + "name": { "str": "Principles of Metalworking" }, + "description": "A basic understanding of the properties of metal as a material, and the concepts behind smithing, die casting, and other metalworking techniques.", + "can_learn": true, + "time_to_learn": "2 h" + }, + { + "type": "proficiency", + "id": "prof_welding_basic", + "name": { "str": "Principles of Welding" }, + "description": "A basic understanding of the different types of welding, welding tools and fuels, how to weld different materials, and more.", + "can_learn": true, + "time_to_learn": "6 h", + "required_proficiencies": [ "prof_metalworking" ] + }, + { + "type": "proficiency", + "id": "prof_welding", + "name": { "str": "Welding" }, + "description": "You are an experienced welder.", + "can_learn": true, + "time_to_learn": "10 h", + "required_proficiencies": [ "prof_welding_basic" ] + }, + { + "type": "proficiency", + "id": "prof_blacksmithing", + "name": { "str": "Blacksmithing" }, + "description": "The craft of working metal into tools and other items of use.", + "can_learn": true, + "time_to_learn": "10 h", + "required_proficiencies": [ "prof_metalworking" ] + }, + { + "type": "proficiency", + "id": "prof_redsmithing", + "name": { "str": "Redsmithing" }, + "description": "Working copper and bronze shares a lot of techniques with blacksmithing, but the more ductile copper-containing metals have a trick all their own.", + "can_learn": true, + "time_to_learn": "10 h", + "required_proficiencies": [ "prof_metalworking" ] + }, + { + "type": "proficiency", + "id": "prof_armorsmithing", + "name": { "str": "Armorsmithing" }, + "description": "How to make articulated armor from pieces of metal.", + "can_learn": true, + "time_to_learn": "12 h", + "required_proficiencies": [ "prof_blacksmithing", "prof_articulation" ] + }, + { + "type": "proficiency", + "id": "prof_bladesmith", + "name": { "str": "Bladesmithing" }, + "description": "How to fabricate sharp and reliable blades from scratch.", + "can_learn": true, + "time_to_learn": "12 h", + "required_proficiencies": [ "prof_blacksmithing" ] + }, + { + "type": "proficiency", + "id": "prof_toolsmithing", + "name": { "str": "Manual Tooling" }, + "description": "How to make high-quality tools and parts by hand. Includes techniques like threading, durable articulation points, and using appropriate metals for appropriate tasks.", + "can_learn": true, + "time_to_learn": "10 h", + "required_proficiencies": [ "prof_blacksmithing" ] + } +] diff --git a/data/json/proficiencies/misc.json b/data/json/proficiencies/misc.json index 94e0d045f4d0d..85e2b067c4132 100644 --- a/data/json/proficiencies/misc.json +++ b/data/json/proficiencies/misc.json @@ -2,10 +2,19 @@ { "type": "proficiency", "id": "prof_knapping", + "name": { "str": "Basic Knapping" }, + "description": "You know the basic principles of turning stones into more useful tools.", + "can_learn": true, + "time_to_learn": "8 h" + }, + { + "type": "proficiency", + "id": "prof_knapping_speed", "name": { "str": "Knapping" }, - "description": "The art of turning stones into more useful tools.", + "description": "You've banged rocks together so much and for so long, you've become extremely fast at it.", "can_learn": true, - "time_to_learn": "10 h" + "time_to_learn": "12 h", + "required_proficiencies": [ "prof_knapping" ] }, { "type": "proficiency", @@ -15,6 +24,14 @@ "can_learn": true, "time_to_learn": "8 h" }, + { + "type": "proficiency", + "id": "prof_plumbing", + "name": { "str": "Plumbing" }, + "description": "Working with pipes and pipe fittings to transport fluids without leakage.", + "can_learn": true, + "time_to_learn": "8 h" + }, { "type": "proficiency", "id": "prof_pottery", @@ -55,40 +72,6 @@ "can_learn": true, "time_to_learn": "10 h" }, - { - "type": "proficiency", - "id": "prof_blacksmithing", - "name": { "str": "Blacksmithing" }, - "description": "The craft of working metal into tools and other items of use.", - "can_learn": true, - "time_to_learn": "10 h" - }, - { - "type": "proficiency", - "id": "prof_redsmithing", - "name": { "str": "Redsmithing" }, - "description": "Working copper and bronze shares a lot of techniques with blacksmithing, but the more ductile copper-containing metals have a trick all their own.", - "can_learn": true, - "time_to_learn": "10 h" - }, - { - "type": "proficiency", - "id": "prof_armorsmithing", - "name": { "str": "Armorsmithing" }, - "description": "How to make articulated armor from pieces of metal.", - "can_learn": true, - "time_to_learn": "12 h", - "required_proficiencies": [ "prof_blacksmithing", "prof_articulation" ] - }, - { - "type": "proficiency", - "id": "prof_bladesmith", - "name": { "str": "Bladesmithing" }, - "description": "How to fabricate sharp and reliable blades from scratch.", - "can_learn": true, - "time_to_learn": "12 h", - "required_proficiencies": [ "prof_blacksmithing" ] - }, { "type": "proficiency", "id": "prof_helicopter_pilot", diff --git a/data/json/proficiencies/tailoring.json b/data/json/proficiencies/tailoring.json index 5becf82b6936a..55a99568713ec 100644 --- a/data/json/proficiencies/tailoring.json +++ b/data/json/proficiencies/tailoring.json @@ -42,6 +42,15 @@ "time_to_learn": "10 h", "required_proficiencies": [ "prof_closures", "prof_leatherworking_basic" ] }, + { + "type": "proficiency", + "id": "prof_spinning", + "name": { "str": "Spinning" }, + "description": "The art of spinning fiber into thread.", + "//": "In the future, having this proficiency could give a boost to learning rope making and vice versa", + "can_learn": true, + "time_to_learn": "6 h" + }, { "type": "proficiency", "id": "prof_millinery", diff --git a/data/json/recipes/armor/feet.json b/data/json/recipes/armor/feet.json index 1a39dc0d5882d..437b9035f475b 100644 --- a/data/json/recipes/armor/feet.json +++ b/data/json/recipes/armor/feet.json @@ -213,7 +213,8 @@ "proficiencies": [ { "proficiency": "prof_cobbling", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_leatherworking_basic", "required": false, "time_multiplier": 1.5 }, - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_armorsmithing", "required": false, "time_multiplier": 3 }, { "proficiency": "prof_articulation", "required": false, "time_multiplier": 2, "fail_multiplier": 1.5 } ], @@ -236,8 +237,7 @@ "proficiencies": [ { "proficiency": "prof_cobbling", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_leatherworking_basic", "required": false, "time_multiplier": 1.5 }, - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, - { "proficiency": "prof_armorsmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_articulation", "required": false, "time_multiplier": 2, "fail_multiplier": 1.5 } ], "qualities": [ { "id": "CUT", "level": 1 }, { "id": "HAMMER", "level": 1 } ], @@ -686,6 +686,7 @@ { "proficiency": "prof_cobbling", "required": false, "time_multiplier": 3 }, { "proficiency": "prof_closures", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 3 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } ], "tools": [ [ [ "swage", -1 ] ] ], @@ -704,6 +705,7 @@ "using": [ [ "blacksmithing_standard", 6 ] ], "proficiencies": [ { "proficiency": "prof_cobbling", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } ], "tools": [ [ [ "swage", -1 ] ] ], diff --git a/data/json/recipes/armor/hands.json b/data/json/recipes/armor/hands.json index 85c89a9265a4a..da5b02a5d0616 100644 --- a/data/json/recipes/armor/hands.json +++ b/data/json/recipes/armor/hands.json @@ -294,7 +294,8 @@ "book_learn": [ [ "textbook_armwest", 5 ] ], "using": [ [ "blacksmithing_standard", 24 ], [ "steel_standard", 6 ], [ "clasps", 2 ], [ "strap_small", 2 ] ], "proficiencies": [ - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_armorsmithing", "required": false, "time_multiplier": 3 }, { "proficiency": "prof_closures", diff --git a/data/json/recipes/armor/legs.json b/data/json/recipes/armor/legs.json index 3fe7cfe2c12d4..f236e2bbb36c7 100644 --- a/data/json/recipes/armor/legs.json +++ b/data/json/recipes/armor/legs.json @@ -291,7 +291,8 @@ "book_learn": [ [ "textbook_armwest", 6 ] ], "using": [ [ "blacksmithing_standard", 28 ], [ "steel_standard", 7 ], [ "strap_small", 4 ], [ "clasps", 4 ] ], "proficiencies": [ - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_armorsmithing", "required": false, "time_multiplier": 2.5 }, { "proficiency": "prof_articulation", "required": false, "time_multiplier": 2 } ], diff --git a/data/json/recipes/armor/torso.json b/data/json/recipes/armor/torso.json index dcdcbd568e64f..02468cb6b671a 100644 --- a/data/json/recipes/armor/torso.json +++ b/data/json/recipes/armor/torso.json @@ -278,12 +278,8 @@ "components": [ [ [ "fur", 6 ], [ "tanned_pelt", 1 ], [ "leather", 6 ], [ "tanned_hide", 1 ] ] ], "proficiencies": [ { "proficiency": "prof_armorsmithing", "required": false, "time_multiplier": 2.5 }, - { - "proficiency": "prof_blacksmithing", - "required": false, - "learning_time_multiplier": 0.5, - "time_multiplier": 3 - } + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } ] }, { diff --git a/data/json/recipes/other/containers.json b/data/json/recipes/other/containers.json index 568ec25c8b73d..d1d2afdb92ef2 100644 --- a/data/json/recipes/other/containers.json +++ b/data/json/recipes/other/containers.json @@ -100,6 +100,10 @@ "time": "164 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 52 ], [ "steel_standard", 13 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, @@ -154,6 +158,7 @@ "using": [ [ "adhesive", 1 ], [ "waterproofing", 1 ] ], "qualities": [ { "id": "CUT", "level": 1 }, { "id": "SAW_W", "level": 2 } ], "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], + "proficiencies": [ { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 2 } ], "components": [ [ [ "2x4", 2 ] ], [ [ "wire", 1 ], [ "scrap", 2 ], [ "copper_scrap_equivalent", 1, "LIST" ] ], @@ -168,9 +173,13 @@ "subcategory": "CSC_OTHER_CONTAINERS", "skill_used": "fabrication", "difficulty": 2, - "time": 90000, + "time": "2 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ] }, { diff --git a/data/json/recipes/other/materials.json b/data/json/recipes/other/materials.json index 6d7496ffc8f47..68d0a6a8c2076 100644 --- a/data/json/recipes/other/materials.json +++ b/data/json/recipes/other/materials.json @@ -265,7 +265,11 @@ "time": "3 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ], - "proficiencies": [ { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, diff --git a/data/json/recipes/other/parts.json b/data/json/recipes/other/parts.json index 3744a7c6e0f5a..39711f73977b7 100644 --- a/data/json/recipes/other/parts.json +++ b/data/json/recipes/other/parts.json @@ -10,6 +10,11 @@ "time": "10 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -24,6 +29,11 @@ "time": "5 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 6 ], [ "steel_standard", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -39,6 +49,11 @@ "autolearn": true, "using": [ [ "forging_standard", 1 ], [ "steel_tiny", 1 ] ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, { @@ -53,6 +68,10 @@ "autolearn": true, "using": [ [ "forging_standard", 5 ], [ "steel_standard", 6 ] ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } + ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, { @@ -67,6 +86,11 @@ "time": "30 m", "autolearn": true, "using": [ [ "welding_standard", 10 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "sheet_metal_small", 24 ] ] ] }, { @@ -81,6 +105,10 @@ "autolearn": true, "using": [ [ "forging_standard", 1 ], [ "steel_tiny", 1 ] ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } + ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, { @@ -95,6 +123,11 @@ "reversible": true, "autolearn": true, "using": [ [ "welding_standard", 6 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "material_aluminium_ingot", 8 ] ] ] } ] diff --git a/data/json/recipes/other/tool.json b/data/json/recipes/other/tool.json index 63a250d330049..e7fa98f7e3371 100644 --- a/data/json/recipes/other/tool.json +++ b/data/json/recipes/other/tool.json @@ -175,7 +175,8 @@ "time": "3 h", "autolearn": true, "proficiencies": [ - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3.0 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2.5 } ], "using": [ [ "blacksmithing_standard", 1 ] ], @@ -212,7 +213,8 @@ "time": "3 h", "autolearn": true, "proficiencies": [ - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3.0 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2.5 }, { "proficiency": "prof_plasticworking", @@ -237,8 +239,15 @@ "time": "3 h", "autolearn": true, "proficiencies": [ - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3.0 }, - { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2 }, + { + "proficiency": "prof_toolsmithing", + "required": false, + "time_multiplier": 1.5, + "learning_time_multiplier": 0.5 + }, { "proficiency": "prof_plasticworking", "required": false, @@ -263,7 +272,8 @@ "reversible": true, "autolearn": true, "proficiencies": [ - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3.0 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2.5 } ], "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], @@ -282,7 +292,8 @@ "reversible": true, "autolearn": true, "proficiencies": [ - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3.0 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2.5 } ], "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], @@ -301,6 +312,11 @@ "reversible": true, "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -316,7 +332,8 @@ "reversible": true, "autolearn": true, "proficiencies": [ - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3.0 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2.5 } ], "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], @@ -335,7 +352,8 @@ "reversible": true, "autolearn": true, "proficiencies": [ - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3.0 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2.5 } ], "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ], @@ -354,8 +372,10 @@ "reversible": true, "autolearn": true, "proficiencies": [ - { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 3.0 }, + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 }, { "proficiency": "prof_plasticworking", "required": false, @@ -380,6 +400,11 @@ "reversible": true, "autolearn": true, "using": [ [ "blacksmithing_standard", 3 ], [ "steel_tiny", 3 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -408,6 +433,10 @@ "autolearn": true, "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ] ], "using": [ [ "forging_standard", 1 ], [ "steel_tiny", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], "components": [ [ [ "2x4", 1 ], [ "stick", 1 ] ] ] }, @@ -421,11 +450,15 @@ "difficulty": 7, "time": "6 h", "autolearn": true, - "using": [ [ "forging_standard", 4 ] ], - "proficiencies": [ { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 2.5 } ], + "using": [ [ "forging_standard", 4 ], [ "plastic_molding", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], - "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ], [ [ "mold_plastic", -1 ] ] ], - "components": [ [ [ "plastic_chunk", 1 ] ], [ [ "scrap", 2 ] ] ] + "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ] ], + "components": [ [ [ "scrap", 2 ] ] ] }, { "result": "fishing_rod_professional", @@ -439,10 +472,10 @@ "time": "5 h", "reversible": true, "book_learn": [ [ "mag_survival", 4 ], [ "manual_survival", 4 ], [ "textbook_survival", 4 ] ], + "using": [ [ "plastic_molding", 3 ] ], "proficiencies": [ { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 2.5 } ], "qualities": [ { "id": "CUT", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], - "tools": [ [ [ "mold_plastic", -1 ] ], [ [ "surface_heat", 50, "LIST" ] ] ], - "components": [ [ [ "plastic_chunk", 3 ] ], [ [ "wire", 1 ] ], [ [ "scrap", 1 ] ], [ [ "weights", 40, "LIST" ] ] ] + "components": [ [ [ "wire", 1 ] ], [ [ "scrap", 1 ] ], [ [ "weights", 40, "LIST" ] ] ] }, { "type": "recipe", @@ -489,8 +522,13 @@ "skill_used": "tailor", "difficulty": 4, "skills_required": [ "fabrication", 3 ], - "time": 300000, + "time": "6 h", "reversible": true, + "proficiencies": [ + { "proficiency": "prof_closures", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_leatherworking_basic", "required": false, "time_multiplier": 3 }, + { "proficiency": "prof_leatherworking", "required": false, "time_multiplier": 2 } + ], "book_learn": [ [ "textbook_tailor", 4 ], [ "manual_tailor", 5 ], [ "tailor_portfolio", 4 ] ], "using": [ [ "sewing_standard", 100 ], [ "cordage", 2 ] ], "components": [ [ [ "leather", 30 ], [ "tanned_hide", 5 ], [ "fur", 30 ], [ "tanned_pelt", 5 ] ], [ [ "wire", 2 ] ] ] @@ -508,6 +546,11 @@ "reversible": true, "book_learn": [ [ "manual_mechanics", 3 ], [ "manual_fabrication", 5 ], [ "textbook_fabrication", 5 ] ], "using": [ [ "forging_standard", 10 ], [ "steel_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ], [ [ "swage", -1 ] ] ] }, @@ -539,6 +582,7 @@ "reversible": true, "book_learn": [ [ "manual_mechanics", 2 ], [ "manual_fabrication", 3 ], [ "textbook_fabrication", 3 ] ], "using": [ [ "welding_standard", 5 ] ], + "proficiencies": [ { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 } ], "qualities": [ { "id": "SAW_M_FINE", "level": 1 }, { "id": "SCREW", "level": 1 }, { "id": "WRENCH", "level": 1 } ], "components": [ [ [ "pipe", 4 ] ], [ [ "scrap", 2 ] ] ] }, @@ -555,6 +599,11 @@ "autolearn": true, "book_learn": [ [ "textbook_carpentry", 5 ], [ "textbook_fabrication", 6 ] ], "using": [ [ "forging_standard", 2 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "2x4", 2 ], [ "stick", 4 ] ] ] @@ -609,6 +658,11 @@ "autolearn": true, "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "using": [ [ "welding_standard", 1 ], [ "forging_standard", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, @@ -632,6 +686,10 @@ "autolearn": true, "book_learn": [ [ "atomic_survival", 0 ], [ "textbook_survival", 0 ] ], "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "ANVIL", "level": 1 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "rock", 2 ] ], [ [ "water", 1 ], [ "water_clean", 1 ], [ "water_sewage", 1 ], [ "salt_water", 1 ], [ "saline", 5 ] ], @@ -646,7 +704,7 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 1, - "time": "10 m", + "time": "1 h", "reversible": true, "autolearn": true, "qualities": [ { "id": "SAW_M_FINE", "level": 1 } ], @@ -661,7 +719,7 @@ "skill_used": "survival", "skills_required": [ "fabrication", 1 ], "difficulty": 2, - "time": "5 m", + "time": "15 m", "reversible": true, "autolearn": true, "book_learn": [ [ "mag_survival", 2 ], [ "textbook_survival", 1 ], [ "cookbook", 2 ] ], @@ -680,6 +738,10 @@ "time": "54 m", "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "HAMMER_SOFT", "level": 1 } ], + "proficiencies": [ + { "proficiency": "prof_knapping", "required": false, "time_multiplier": 2, "fail_multiplier": 10 }, + { "proficiency": "prof_knapping_speed", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "rock_flaking", 1 ], [ "sharp_rock", 1 ] ] ] }, { @@ -691,7 +753,7 @@ "skill_used": "survival", "skills_required": [ "fabrication", 1 ], "difficulty": 3, - "time": 60000, + "time": "20 m", "reversible": true, "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 1 } ], @@ -720,7 +782,7 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 1, - "time": "20 m", + "time": "1 h 30 m", "reversible": true, "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 2 } ], @@ -734,7 +796,7 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 1, - "time": "20 m", + "time": "1 h", "reversible": true, "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 2 } ], @@ -749,10 +811,14 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 2, - "time": 80000, + "time": "3 h", "reversible": true, "autolearn": true, - "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ] + "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } + ] }, { "result": "crowbar", @@ -766,6 +832,11 @@ "reversible": true, "autolearn": true, "using": [ [ "forging_standard", 8 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, @@ -781,6 +852,11 @@ "reversible": true, "book_learn": [ [ "textbook_fireman", 8 ] ], "using": [ [ "forging_standard", 20 ], [ "steel_standard", 3 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, @@ -796,6 +872,11 @@ "reversible": true, "autolearn": true, "using": [ [ "forging_standard", 6 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, @@ -811,6 +892,11 @@ "reversible": true, "autolearn": true, "using": [ [ "forging_standard", 8 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ @@ -831,6 +917,11 @@ "reversible": true, "book_learn": [ [ "textbook_fireman", 6 ] ], "using": [ [ "blacksmithing_standard", 16 ], [ "steel_standard", 3 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, @@ -841,7 +932,7 @@ "category": "CC_OTHER", "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", - "time": "1 m", + "time": "5 m", "reversible": true, "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 1 } ], @@ -926,6 +1017,10 @@ { "id": "DRILL", "level": 2 }, { "id": "FILE", "level": 2 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } + ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "jerrycan_big", 1 ], [ "metal_tank_little", 1 ] ], @@ -962,6 +1057,10 @@ { "id": "DRILL", "level": 2 }, { "id": "FILE", "level": 2 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } + ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "30gal_drum", 1 ], [ "metal_tank", 1 ] ], @@ -1019,6 +1118,10 @@ { "id": "DRILL", "level": 2 }, { "id": "FILE", "level": 2 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } + ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "pipe", 2 ] ], @@ -1084,6 +1187,10 @@ { "id": "DRILL", "level": 2 }, { "id": "FILE", "level": 2 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } + ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "pipe", 4 ] ], [ [ "hose", 2 ] ], [ [ "gasket_plastic", 2 ] ], [ [ "well_pump", 1 ] ] ] }, @@ -1129,6 +1236,10 @@ { "id": "FILE", "level": 2 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "metal_tank", 1 ] ], [ [ "pipe", 2 ] ], @@ -1161,13 +1272,13 @@ "subcategory": "CSC_CHEM_DRUGS", "skill_used": "fabrication", "difficulty": 2, - "time": "1 m", + "time": "90 m", "reversible": true, "book_learn": [ [ "textbook_extraction", 4 ] ], "qualities": [ { "id": "CUT", "level": 1 } ], - "proficiencies": [ { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 5 } ], - "tools": [ [ [ "mold_plastic", -1 ] ], [ [ "surface_heat", 5, "LIST" ] ] ], - "components": [ [ [ "plastic_chunk", 1 ] ], [ [ "glass_shard", 1 ] ] ] + "proficiencies": [ { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 3 } ], + "using": [ [ "plastic_molding", 1 ] ], + "components": [ [ [ "glass_shard", 1 ] ] ] }, { "result": "dog_whistle_wood", @@ -1181,6 +1292,7 @@ "time": "20 m", "autolearn": true, "qualities": [ { "id": "CUT", "level": 1 }, { "id": "CUT_FINE", "level": 1 } ], + "proficiencies": [ { "proficiency": "prof_carving", "required": false, "time_multiplier": 3 } ], "components": [ [ [ "2x4", 1 ], [ "stick", 1 ] ] ] }, { @@ -1193,10 +1305,11 @@ "skill_used": "fabrication", "difficulty": 4, "skills_required": [ [ "survival", 3 ], [ "tailor", 4 ] ], - "time": "1 h", + "time": "30 m", "reversible": true, "autolearn": true, "qualities": [ { "id": "CUT", "level": 1 }, { "id": "SEW", "level": 2 } ], + "proficiencies": [ { "proficiency": "prof_leatherworking_basic", "required": false, "time_multiplier": 2 } ], "components": [ [ [ "leather", 2 ] ], [ [ "superglue", 1 ] ], [ [ "filament", 40, "LIST" ] ] ] }, { @@ -1227,6 +1340,11 @@ "using": [ [ "forging_standard", 8 ] ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2.5 } + ], "components": [ [ [ "steel_lump", 1 ], [ "steel_chunk", 4 ], [ "scrap", 20 ] ], [ [ "2x4", 1 ], [ "stick", 1 ] ] ] }, { @@ -1240,10 +1358,10 @@ "time": "1 h", "reversible": true, "book_learn": [ [ "plastics_book", 2 ] ], + "using": [ [ "plastic_molding", 5 ] ], "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "CUT", "level": 1 } ], "proficiencies": [ { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 3 } ], - "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], - "components": [ [ [ "plastic_chunk", 5 ] ], [ [ "2x4", 1 ], [ "stick", 1 ] ] ] + "components": [ [ [ "2x4", 1 ], [ "stick", 1 ] ] ] }, { "result": "rake", @@ -1259,6 +1377,11 @@ "using": [ [ "forging_standard", 8 ] ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER_FINE", "level": 1 }, { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2.5 } + ], "components": [ [ [ "steel_lump", 1 ], [ "steel_chunk", 4 ], [ "scrap", 20 ] ], [ [ "2x4", 1 ], [ "stick", 1 ] ] ] }, { @@ -1273,8 +1396,8 @@ "reversible": true, "book_learn": [ [ "plastics_book", 2 ] ], "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "CUT", "level": 1 } ], + "using": [ [ "plastic_molding", 5 ] ], "proficiencies": [ { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 3 } ], - "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], - "components": [ [ [ "plastic_chunk", 5 ] ], [ [ "2x4", 1 ], [ "stick", 1 ] ] ] + "components": [ [ [ "2x4", 1 ], [ "stick", 1 ] ] ] } ] diff --git a/data/json/recipes/recipe_others.json b/data/json/recipes/recipe_others.json index 3ee871e0d5a5d..7ecb922f592c2 100644 --- a/data/json/recipes/recipe_others.json +++ b/data/json/recipes/recipe_others.json @@ -11,6 +11,10 @@ "time": "1 h 40 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -247,6 +251,10 @@ "difficulty": 2, "book_learn": [ [ "fun_survival", 1 ], [ "manual_survival", 1 ], [ "textbook_survival", 1 ] ], "qualities": [ { "id": "CUT", "level": 1 }, { "id": "SCREW", "level": 1 } ], + "proficiencies": [ + { "proficiency": "prof_closures", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_closures_waterproofing", "required": false, "time_multiplier": 2.5 } + ], "time": "32 m", "autolearn": true, "components": [ [ [ "largebroketent", 2 ], [ "broketent", 4 ], [ "tent_kit", 3 ] ], [ [ "superglue", 3 ], [ "duct_tape", 40 ] ] ] @@ -266,7 +274,7 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "caltrops", "id_suffix": "from wire", "category": "CC_OTHER", @@ -314,7 +322,7 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "ACTIVE_EXERCISE", "result": "reinforced_glass_sheet", "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", @@ -325,38 +333,52 @@ "decomp_learn": 3, "autolearn": true, "using": [ [ "welding_standard", 10 ] ], + "proficiencies": [ + { "proficiency": "prof_glassblowing", "required": false, "time_multiplier": 1.5, "fail_multiplier": 1.5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 } + ], "qualities": [ { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "reinforced_glass_pane", 4 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "ACTIVE_EXERCISE", "result": "chainsaw_off", "category": "CC_OTHER", "subcategory": "CSC_OTHER_TOOLS", "skill_used": "mechanics", "difficulty": 4, - "time": "20 m", + "time": "5 h", "reversible": true, "decomp_learn": 4, "book_learn": [ [ "book_icef", 3 ], [ "textbook_mechanics", 3 ], [ "textbook_carpentry", 3 ] ], "using": [ [ "welding_standard", 10 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SCREW", "level": 1 }, { "id": "WRENCH", "level": 1 } ], "components": [ [ [ "1cyl_combustion_small", 1 ] ], [ [ "metal_tank_little", 1 ] ], [ [ "chain", 1 ] ], [ [ "scrap", 3 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "ACTIVE_EXERCISE", "result": "small_space_heater", "category": "CC_OTHER", "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 4, - "time": "1 h", + "time": "2 h", "reversible": true, "decomp_learn": 3, "autolearn": true, "using": [ [ "welding_standard", 5 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 }, @@ -367,17 +389,22 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "ACTIVE_EXERCISE", "result": "large_space_heater", "category": "CC_OTHER", "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 4, - "time": "1 h 30 m", + "time": "2 h 30 m", "reversible": true, "decomp_learn": 3, "autolearn": true, "using": [ [ "welding_standard", 10 ], [ "steel_standard", 4 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 }, @@ -404,7 +431,7 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "ACTIVE_EXERCISE", "result": "press", "category": "CC_OTHER", "subcategory": "CSC_OTHER_TOOLS", @@ -413,6 +440,11 @@ "difficulty": 5, "time": "45 m", "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "book_learn": [ [ "manual_shotgun", 2 ], [ "manual_rifle", 2 ], [ "manual_smg", 2 ], [ "manual_pistol", 3 ], [ "recipe_bullets", 2 ] ], "tools": [ [ [ "swage", -1 ] ] ], "components": [ [ [ "element", 2 ], [ "hotplate", 1 ] ], [ [ "cable", 2 ] ] ] @@ -596,73 +628,98 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "ACTIVE_EXERCISE", "result": "reinforced_glass_pane", "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "fabrication", "difficulty": 2, - "time": "20 m", + "time": "40 m", "book_learn": [ [ "textbook_fabrication", 3 ], [ "textbook_mechanics", 3 ], [ "welding_book", 5 ] ], "using": [ [ "welding_standard", 4 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "glass_sheet", 1 ] ], [ [ "wire", 8 ] ], [ [ "superglue", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "ACTIVE_EXERCISE", "result": "headlight_reinforced", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "fabrication", "difficulty": 2, - "time": "20 m", + "time": "45 m", "book_learn": [ [ "textbook_fabrication", 3 ], [ "textbook_mechanics", 3 ], [ "welding_book", 5 ] ], "using": [ [ "welding_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "car_headlight", 1 ] ], [ [ "wire", 2 ] ], [ [ "superglue", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "wide_headlight_reinforced", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "fabrication", "difficulty": 2, - "time": "24 m", + "time": "45 m", "book_learn": [ [ "textbook_fabrication", 3 ], [ "textbook_mechanics", 3 ], [ "welding_book", 5 ] ], "using": [ [ "welding_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "car_wide_headlight", 1 ] ], [ [ "wire", 3 ] ], [ [ "superglue", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "reinforced_solar_panel", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "fabrication", "difficulty": 2, - "time": "20 m", + "time": "2 h", "reversible": true, "autolearn": true, "using": [ [ "welding_standard", 4 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "solar_panel", 1 ] ], [ [ "reinforced_glass_pane", 1 ] ], [ [ "scrap", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "reinforced_solar_panel_v2", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "fabrication", "difficulty": 10, - "time": "20 m", + "time": "2 h", "reversible": true, "book_learn": [ [ "textbook_robots", 8 ] ], "using": [ [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "solar_panel_v2", 1 ] ], [ [ "reinforced_glass_pane", 1 ] ], [ [ "scrap", 2 ] ], [ [ "wire", 2 ] ] ] }, @@ -730,6 +787,7 @@ "time": "20 m", "autolearn": true, "qualities": [ { "id": "CUT", "level": 1 } ], + "proficiencies": [ { "proficiency": "prof_carving", "required": false, "time_multiplier": 2 } ], "components": [ [ [ "bone_sturdy", 1, "LIST" ], [ "skewer_bone", 1 ] ] ] }, { @@ -740,9 +798,10 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 1, - "time": "20 m", + "time": "10 m", "autolearn": true, "qualities": [ { "id": "CUT", "level": 1 } ], + "proficiencies": [ { "proficiency": "prof_carving", "required": false, "time_multiplier": 2 } ], "components": [ [ [ "splinter", 1 ] ] ] }, { @@ -757,6 +816,7 @@ "time": "1 h", "autolearn": true, "qualities": [ { "id": "CUT", "level": 1 } ], + "proficiencies": [ { "proficiency": "prof_carving", "required": false, "time_multiplier": 2 } ], "components": [ [ [ "bone_sturdy", 1, "LIST" ] ] ] }, { @@ -768,7 +828,7 @@ "skill_used": "survival", "skills_required": [ "fabrication", 2 ], "difficulty": 5, - "time": "30 m", + "time": "1 h", "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 1 }, @@ -776,6 +836,10 @@ { "id": "PUNCH", "level": 1 }, { "id": "CUT", "level": 1 } ], + "proficiencies": [ + { "proficiency": "prof_knapping", "required": false, "time_multiplier": 2, "fail_multiplier": 10 }, + { "proficiency": "prof_knapping_speed", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "stick", 1 ], [ "2x4", 1 ] ], [ [ "rock_flaking", 1 ], [ "sharp_rock", 1 ] ], @@ -793,6 +857,7 @@ "time": "20 m", "autolearn": true, "qualities": [ { "id": "CUT", "level": 1 } ], + "proficiencies": [ { "proficiency": "prof_carving", "required": false, "time_multiplier": 3, "fail_multiplier": 1 } ], "components": [ [ [ "stick", 1 ], [ "2x4", 1 ] ] ] }, { @@ -811,6 +876,7 @@ { "id": "CUT", "level": 1 }, { "id": "CHISEL_WOOD", "level": 1 } ], + "proficiencies": [ { "proficiency": "prof_carving", "required": false, "time_multiplier": 3, "fail_multiplier": 1 } ], "components": [ [ [ "stick", 1 ], [ "2x4", 1 ] ], [ [ "2x4", 1 ] ], @@ -831,6 +897,10 @@ "book_learn": [ [ "mag_survival", 1 ], [ "atomic_survival", 1 ], [ "textbook_carpentry", 2 ] ], "qualities": [ { "id": "HAMMER", "level": 1 } ], "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_redsmithing", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "stick", 1 ], [ "2x4", 1 ] ], [ [ "copper_scrap_equivalent", 40, "LIST" ] ], @@ -844,11 +914,29 @@ "category": "CC_OTHER", "subcategory": "CSC_OTHER_TOOLS", "skill_used": "survival", + "skills_required": [ "fabrication", 1 ], + "difficulty": 4, + "time": "1 h", + "autolearn": true, + "proficiencies": [ + { "proficiency": "prof_knapping", "required": false, "time_multiplier": 2, "fail_multiplier": 10 }, + { "proficiency": "prof_knapping_speed", "required": false, "time_multiplier": 2 } + ], + "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "HAMMER_SOFT", "level": 1 }, { "id": "CHISEL_WOOD", "level": 1 } ], + "components": [ [ [ "stick", 1 ], [ "2x4", 1 ] ], [ [ "rock_flaking", 1 ], [ "sharp_rock", 1 ] ] ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "primitive_axe", + "id_suffix": "by grinding", + "category": "CC_OTHER", + "subcategory": "CSC_OTHER_TOOLS", + "skill_used": "survival", "skills_required": [ "fabrication", 2 ], "difficulty": 5, "time": "2 h", "autolearn": true, - "proficiencies": [ { "proficiency": "prof_knapping", "required": true } ], "book_learn": [ [ "mag_survival", 1 ], [ "atomic_survival", 1 ], [ "textbook_carpentry", 2 ] ], "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "ANVIL", "level": 1 }, { "id": "CHISEL_WOOD", "level": 1 } ], "tools": [ [ [ "fire", -1 ] ] ], @@ -953,7 +1041,7 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 3, - "time": "9 m", + "time": "2 h", "autolearn": true, "qualities": [ { "id": "CUT", "level": 1 } ], "components": [ [ [ "stick", 2 ], [ "2x4", 1 ] ], [ [ "skewer_bone", 20 ], [ "splinter", 20 ] ] ] @@ -969,7 +1057,8 @@ "difficulty": 2, "time": "30 m", "autolearn": true, - "qualities": [ { "id": "SEW", "level": 1 } ], + "qualities": [ { "id": "SEW", "level": 1 }, { "id": "LEATHER_AWL", "level": 1 }, { "id": "CUT", "level": 1 } ], + "proficiencies": [ { "proficiency": "prof_leatherworking_basic", "required": false, "time_multiplier": 2, "fail_multiplier": 5 } ], "components": [ [ [ "leather", 6 ], [ "tanned_hide", 1 ], [ "fur", 6 ], [ "tanned_pelt", 1 ] ], [ [ "filament", 10, "LIST" ] ] ] }, { @@ -983,7 +1072,8 @@ "difficulty": 2, "time": "30 m", "autolearn": true, - "qualities": [ { "id": "SEW", "level": 1 } ], + "qualities": [ { "id": "SEW", "level": 1 }, { "id": "LEATHER_AWL", "level": 1 }, { "id": "CUT", "level": 1 } ], + "proficiencies": [ { "proficiency": "prof_leatherworking_basic", "required": false, "time_multiplier": 2, "fail_multiplier": 5 } ], "components": [ [ [ "leather", 14 ], [ "tanned_hide", 2 ], [ "fur", 14 ], [ "tanned_pelt", 2 ] ], [ [ "filament", 20, "LIST" ] ] ] }, { @@ -997,7 +1087,8 @@ "difficulty": 3, "time": "30 m", "autolearn": true, - "qualities": [ { "id": "SEW", "level": 1 } ], + "qualities": [ { "id": "SEW", "level": 1 }, { "id": "LEATHER_AWL", "level": 1 }, { "id": "CUT", "level": 1 } ], + "proficiencies": [ { "proficiency": "prof_leatherworking_basic", "required": false, "time_multiplier": 2, "fail_multiplier": 5 } ], "components": [ [ [ "leather", 24 ], [ "tanned_hide", 4 ], [ "fur", 24 ], [ "tanned_pelt", 4 ] ], [ [ "filament", 30, "LIST" ] ] ] }, { @@ -1022,9 +1113,15 @@ "skill_used": "survival", "skills_required": [ "fabrication", 1 ], "difficulty": 2, - "time": "50 m", + "time": "2 h", "autolearn": true, - "qualities": [ { "id": "SEW", "level": 1 } ], + "qualities": [ { "id": "SEW", "level": 1 }, { "id": "LEATHER_AWL", "level": 1 }, { "id": "CUT", "level": 1 } ], + "proficiencies": [ + { "proficiency": "prof_leatherworking_basic", "required": false, "time_multiplier": 2, "fail_multiplier": 5 }, + { "proficiency": "prof_leatherworking", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_closures", "required": false, "time_multiplier": 1.5 }, + { "proficiency": "prof_closures_waterproofing", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "stick", 10 ], [ "2x4", 5 ] ], [ [ "leather", 20 ], [ "tanned_hide", 4 ] ], [ [ "filament", 40, "LIST" ] ] ] }, { @@ -1038,7 +1135,13 @@ "skills_required": [ "tailor", 1 ], "time": "20 m", "autolearn": true, - "qualities": [ { "id": "SEW", "level": 1 } ], + "qualities": [ { "id": "SEW", "level": 1 }, { "id": "LEATHER_AWL", "level": 1 }, { "id": "CUT", "level": 1 } ], + "proficiencies": [ + { "proficiency": "prof_leatherworking_basic", "required": false, "time_multiplier": 2, "fail_multiplier": 5 }, + { "proficiency": "prof_leatherworking", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_closures", "required": false, "time_multiplier": 1.5 }, + { "proficiency": "prof_closures_waterproofing", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "stick", 3 ], [ "2x4", 2 ] ], [ [ "leather", 4 ], [ "tanned_hide", 1 ] ], @@ -1059,7 +1162,11 @@ "reversible": true, "decomp_learn": 0, "autolearn": true, - "qualities": [ { "id": "CUT", "level": 1 } ], + "qualities": [ { "id": "SEW", "level": 1 }, { "id": "CUT", "level": 1 } ], + "proficiencies": [ + { "proficiency": "prof_leatherworking_basic", "required": false, "time_multiplier": 2, "fail_multiplier": 5 }, + { "proficiency": "prof_furriery", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "fur", 24 ], [ "tanned_pelt", 4 ] ], [ [ "filament", 10, "LIST" ] ] ] }, { @@ -1070,15 +1177,19 @@ "subcategory": "CSC_OTHER_PARTS", "skill_used": "fabrication", "skills_required": [ "mechanics", 1 ], - "difficulty": 2, - "time": "7 m", - "autolearn": true, + "difficulty": 4, + "time": "2 h", + "book_learn": [ [ "carpentry_book", 5 ], [ "101_carpentry", 4 ] ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5 }, + { "proficiency": "prof_plumbing", "required": false, "time_multiplier": 3, "fail_multiplier": 5 } + ], "components": [ [ [ "pipe", 1 ] ], [ [ "scrap", 1 ] ], [ [ "plastic_chunk", 1 ] ], [ [ "pipe_fittings", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "cargo_rack", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", @@ -1088,6 +1199,11 @@ "time": "1 h", "autolearn": true, "using": [ [ "rope_natural", 4 ], [ "welding_standard", 10 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 }, { "id": "WRENCH", "level": 1 } ], "components": [ [ [ "frame", 4 ] ], [ [ "steel_chunk", 4 ], [ "scrap", 12 ] ] ] }, @@ -1108,60 +1224,82 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "workbench", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "fabrication", "difficulty": 3, - "time": "1 h", + "time": "2 h", "reversible": true, "decomp_learn": 1, "autolearn": true, "using": [ [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "pipe", 8 ] ], [ [ "sheet_metal", 2 ] ], [ [ "sheet_metal_small", 4 ] ], [ [ "pipe_fittings", 4 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "muffler", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "mechanics", "difficulty": 1, - "time": "10 m", + "time": "30 m", "reversible": true, "autolearn": true, "using": [ [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "pipe", 2 ] ], [ [ "sheet_metal_small", 5 ] ], [ [ "pipe_fittings", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "seat", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "fabrication", "difficulty": 1, - "time": "10 m", + "time": "2 h", "reversible": true, "autolearn": true, "using": [ [ "sewing_standard", 50 ], [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "pipe", 4 ] ], [ [ "spring", 2 ] ], [ [ "rag", 20 ], [ "sheet", 1 ] ], [ [ "pipe_fittings", 4 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "seat_leather", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "fabrication", "difficulty": 1, - "time": "10 m", + "time": "6 h", "reversible": true, "autolearn": true, "using": [ [ "sewing_standard", 50 ], [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_leatherworking_basic", "required": false, "time_multiplier": 3 }, + { "proficiency": "prof_leatherworking", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "pipe", 4 ] ], [ [ "spring", 2 ] ], @@ -1205,8 +1343,9 @@ "skill_used": "tailor", "difficulty": 1, "skills_required": [ "fabrication", 1 ], - "time": "9 m", + "time": "10 m", "autolearn": true, + "proficiencies": [ { "proficiency": "prof_spinning", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 } ], "tools": [ [ [ "distaff_spindle", -1 ] ] ], "components": [ [ [ "cotton_ball", 3 ] ] ] }, @@ -1247,7 +1386,7 @@ "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "tailor", - "time": "10 m", + "time": "60 m", "autolearn": true, "reversible": true, "using": [ [ "tailoring_cotton", 7 ] ] @@ -1259,10 +1398,11 @@ "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "tailor", - "time": "2 m", + "time": "2 h", "autolearn": true, "reversible": true, "using": [ [ "sewing_standard", 15 ] ], + "proficiencies": [ { "proficiency": "prof_polymerworking", "required": false, "time_multiplier": 2.5 } ], "components": [ [ [ "sheet_kevlar", 16 ] ] ] }, { @@ -1272,13 +1412,14 @@ "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "tailor", - "time": "15 m", + "time": "45 m", "autolearn": true, + "proficiencies": [ { "proficiency": "prof_polymerworking", "required": false, "time_multiplier": 2.5 } ], "components": [ [ [ "sheet_kevlar", 16 ], [ "sheet_kevlar_layered", 1 ] ], [ [ "superglue", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "vehicle_controls", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", @@ -1287,6 +1428,11 @@ "time": "30 m", "book_learn": [ [ "textbook_fabrication", 5 ], [ "textbook_mechanics", 3 ], [ "manual_mechanics", 3 ] ], "using": [ [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 }, { "id": "WRENCH", "level": 1 } ], "components": [ [ [ "pipe", 6 ] ], @@ -1298,17 +1444,22 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "folding_bicycle", "category": "CC_OTHER", "subcategory": "CSC_OTHER_OTHER", "skill_used": "mechanics", "difficulty": 5, - "time": "2 h", + "time": "12 h", "reversible": true, "decomp_learn": 4, "book_learn": [ [ "textbook_fabrication", 4 ], [ "manual_mechanics", 4 ], [ "textbook_mechanics", 4 ] ], "using": [ [ "welding_standard", 30 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "WRENCH", "level": 1 } ], "components": [ [ [ "frame", 2 ] ], @@ -1510,7 +1661,7 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "wire", "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", @@ -1519,6 +1670,10 @@ "time": "30 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "scrap", 1 ] ] ] @@ -1548,6 +1703,10 @@ "time": "1 h", "autolearn": true, "qualities": [ { "id": "ANVIL", "level": 1 }, { "id": "HAMMER", "level": 2 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "tools": [ [ [ "swage", -1 ] ], [ [ "surface_heat", 2, "LIST" ], [ "forge", 2 ], [ "oxy_torch", 2 ] ] ], "components": [ [ [ "wire", 6 ] ] ] }, @@ -1574,6 +1733,7 @@ "time": "30 m", "autolearn": true, "using": [ [ "cordage_short", 3 ] ], + "proficiencies": [ { "proficiency": "prof_carving", "required": false, "time_multiplier": 3 } ], "qualities": [ { "id": "CUT", "level": 1 } ], "components": [ [ [ "splinter", 1 ], [ "stick", 1 ], [ "2x4", 1 ] ] ] }, @@ -1584,7 +1744,7 @@ "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "fabrication", - "time": "3 m", + "time": "30 m", "reversible": true, "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 1 } ], @@ -1597,7 +1757,7 @@ "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "fabrication", - "time": "3 m", + "time": "10 m", "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 1 } ], "components": [ [ [ "broadsword", 1 ], [ "machete", 1 ] ] ] @@ -1627,6 +1787,11 @@ "time": "3 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 }, { "id": "SAW_M", "level": 2 }, { "id": "CUT", "level": 1 } ], "tools": [ [ [ "swage", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "plastic_chunk", 2 ], [ "2x4", 1 ], [ "stick", 2 ] ] ] @@ -1639,7 +1804,7 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 3, - "time": "6 m", + "time": "30 m", "reversible": true, "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "SAW_W", "level": 1 } ], @@ -1651,7 +1816,7 @@ "result": "duct_tape", "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", - "skill_used": "fabrication", + "skill_used": "chemistry", "difficulty": 3, "time": "18 m", "book_learn": [ [ "textbook_fabrication", 3 ], [ "textbook_chemistry", 3 ], [ "adv_chemistry", 3 ], [ "textbook_mechanics", 5 ] ], @@ -1668,10 +1833,13 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 1, - "time": "2 m", + "time": "60 m", "autolearn": true, - "qualities": [ { "id": "HAMMER", "level": 1 } ], - "components": [ [ [ "scrap", 2 ] ] ] + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], + "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ] }, { "type": "recipe", @@ -1752,6 +1920,11 @@ "decomp_learn": 2, "autolearn": true, "using": [ [ "forging_standard", 3 ], [ "steel_standard", 11 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "book_learn": [ [ "mag_traps", 1 ], [ "manual_mechanics", 2 ], [ "manual_traps", 1 ], [ "howto_traps", 1 ] ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "WRENCH", "level": 1 } ], "tools": [ [ [ "tongs", -1 ] ] ], @@ -1860,7 +2033,7 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 1, - "time": "2 m", + "time": "30 m", "reversible": true, "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 2 } ], @@ -1874,7 +2047,7 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "survival", "difficulty": 1, - "time": "2 m", + "time": "15 m", "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 1 } ], "tools": [ [ [ "spike", -1 ], [ "sharp_rock", -1 ], [ "rebar", -1 ], [ "spear_rebar", -1 ] ] ], @@ -1888,7 +2061,7 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "survival", "difficulty": 1, - "time": "2 m", + "time": "15 m", "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 1 } ], "tools": [ [ [ "spike", -1 ], [ "sharp_rock", -1 ], [ "rebar", -1 ], [ "spear_rebar", -1 ] ] ], @@ -1896,15 +2069,20 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "metal_tank", "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "fabrication", "difficulty": 1, - "time": "2 m", + "time": "20 m", "autolearn": true, "using": [ [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 } ], "components": [ [ [ "sheet_metal", 1 ] ] ] }, @@ -1916,24 +2094,34 @@ "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "fabrication", "difficulty": 4, - "time": "10 m", + "time": "20 m", "reversible": true, "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "GLARE", "level": 2 } ], "tools": [ [ [ "welder", 50 ], [ "welder_crude", 75 ], [ "toolset", 75 ], [ "oxy_torch", 10 ] ], [ [ "soldering_iron", 10 ] ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "sheet_metal", 1 ] ], [ [ "scrap", 2 ] ], [ [ "circuit", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "metal_tank_little", "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "fabrication", "difficulty": 1, - "time": "30 s", + "time": "20 m", "autolearn": true, "using": [ [ "welding_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 } ], "components": [ [ [ "sheet_metal_small", 3 ] ] ] }, @@ -1946,7 +2134,7 @@ "skill_used": "firstaid", "skills_required": [ "survival", 1 ], "difficulty": 1, - "time": "2 m", + "time": "5 m", "autolearn": true, "components": [ [ [ "rag", 10 ], [ "medical_gauze", 4 ] ], @@ -1963,7 +2151,7 @@ "skill_used": "firstaid", "skills_required": [ "survival", 1 ], "difficulty": 1, - "time": "1 m", + "time": "2 m", "autolearn": true, "components": [ [ [ "rag", 5 ], [ "medical_gauze", 2 ] ], @@ -1980,7 +2168,7 @@ "skill_used": "firstaid", "skills_required": [ "survival", 1 ], "difficulty": 1, - "time": "1 m", + "time": "2 m", "autolearn": true, "components": [ [ [ "rag", 10 ], [ "medical_gauze", 4 ] ], @@ -2012,7 +2200,7 @@ "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "fabrication", - "time": "2 m 30 s", + "time": "2 h", "reversible": true, "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 1 } ], @@ -2048,7 +2236,7 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "jerrycan_big", "category": "CC_OTHER", "subcategory": "CSC_OTHER_CONTAINERS", @@ -2062,16 +2250,21 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "jerrycan_big", "id_suffix": "welder", "category": "CC_OTHER", "subcategory": "CSC_OTHER_CONTAINERS", "skill_used": "fabrication", "difficulty": 2, - "time": "10 m", + "time": "20 m", "autolearn": true, "using": [ [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 } ], "components": [ [ [ "sheet_metal_small", 8 ], [ "scrap", 40 ] ] ] }, @@ -2086,6 +2279,11 @@ "time": "2 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ], [ [ "swage", -1 ] ] ], "components": [ [ [ "scrap", 2 ] ] ] @@ -2098,8 +2296,9 @@ "subcategory": "CSC_OTHER_CONTAINERS", "skill_used": "fabrication", "difficulty": 1, - "time": "12 m", + "time": "25 m", "autolearn": true, + "proficiencies": [ { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 2 } ], "tools": [ [ [ "surface_heat", 2, "LIST" ] ] ], "components": [ [ [ "plastic_chunk", 3 ] ] ] }, @@ -2301,11 +2500,15 @@ "subcategory": "CSC_OTHER_TOOLS", "skill_used": "electronics", "difficulty": 2, - "time": "30 m", + "time": "1 h", "reversible": true, "decomp_learn": 2, "autolearn": [ [ "mechanics", 3 ], [ "electronics", 2 ] ], "book_learn": [ [ "manual_mechanics", 3 ], [ "textbook_mechanics", 2 ], [ "welding_book", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 1.5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "SCREW", "level": 1 }, { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "power_supply", 4 ] ], @@ -2354,6 +2557,7 @@ { "id": "WRENCH", "level": 1 } ], "tools": [ [ [ "welder", 200 ], [ "welder_crude", 300 ], [ "toolset", 300 ], [ "soldering_iron", 300 ], [ "oxy_torch", 40 ] ] ], + "proficiencies": [ { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 } ], "components": [ [ [ "element", 8 ] ], [ [ "steel_lump", 1 ], [ "steel_chunk", 4 ], [ "scrap", 12 ] ], @@ -2373,6 +2577,10 @@ "autolearn": true, "qualities": [ { "id": "HAMMER", "level": 2 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ], [ [ "forge", 150 ], [ "oxy_torch", 30 ] ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "components": [ [ [ "steel_chunk", 160 ], [ "steel_lump", 40 ], [ "frame", 4 ], [ "hdframe", 2 ] ] ] }, { @@ -2401,6 +2609,11 @@ "autolearn": true, "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 2 } ], "tools": [ [ [ "forge", 150 ], [ "oxy_torch", 30 ] ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "steel_lump", 1 ], [ "steel_chunk", 4 ], [ "scrap", 12 ], [ "pipe", 3 ], [ "pipe_fittings", 1 ] ] ] }, { @@ -2422,7 +2635,12 @@ [ "textbook_armeast", 5 ], [ "textbook_armwest", 5 ] ], - "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ] + "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ] }, { "type": "recipe", @@ -2442,6 +2660,11 @@ [ "textbook_armwest", 5 ] ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ] ] }, @@ -2456,6 +2679,11 @@ "time": "2 h", "autolearn": true, "using": [ [ "forging_standard", 12 ], [ "steel_standard", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 2 } ], "tools": [ [ [ "tongs", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ] ] @@ -2471,6 +2699,11 @@ "time": "2 h 20 m", "autolearn": true, "using": [ [ "forging_standard", 12 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 2 } ], "tools": [ [ [ "tongs", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ], [ "splinter", 6 ] ] ] @@ -2486,6 +2719,10 @@ "time": "3 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -2500,6 +2737,12 @@ "time": "2 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 1.5 }, + { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 1.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -2549,7 +2792,11 @@ "difficulty": 2, "time": "1 h 30 m", "autolearn": true, - "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ] + "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ] }, { "type": "recipe", @@ -2562,6 +2809,10 @@ "time": "1 h 30 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ] }, { @@ -2576,6 +2827,11 @@ "time": "1 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -2590,6 +2846,11 @@ "time": "5 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, @@ -2604,6 +2865,11 @@ "time": "5 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "plastic_chunk", 1 ], [ "scrap", 1 ] ] ] @@ -2619,6 +2885,11 @@ "time": "5 h 20 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "book_learn": [ [ "manual_mechanics", 3 ], [ "manual_fabrication", 3 ], [ "textbook_fabrication", 4 ] ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ], @@ -2636,6 +2907,11 @@ "time": "6 h 20 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "book_learn": [ [ "manual_mechanics", 4 ], [ "manual_fabrication", 4 ], [ "textbook_fabrication", 4 ] ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] @@ -2651,6 +2927,11 @@ "time": "4 h 40 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "book_learn": [ [ "manual_fabrication", 2 ], [ "textbook_fabrication", 3 ] ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], @@ -2667,6 +2948,11 @@ "time": "5 h 20 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 16 ], [ "steel_standard", 4 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "book_learn": [ [ "manual_fabrication", 3 ], [ "textbook_fabrication", 4 ] ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] @@ -2682,6 +2968,11 @@ "time": "5 h 20 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "book_learn": [ [ "manual_fabrication", 3 ], [ "textbook_fabrication", 4 ] ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], @@ -2698,6 +2989,12 @@ "time": "6 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 }, + { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 2 } + ], "book_learn": [ [ "textbook_fabrication", 4 ] ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], @@ -2715,6 +3012,11 @@ "autolearn": true, "book_learn": [ [ "manual_fabrication", 3 ], [ "textbook_fabrication", 4 ] ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "2x4", 2 ] ] ] @@ -2731,6 +3033,11 @@ "byproducts": [ [ "splinter", 13 ] ], "book_learn": [ [ "manual_fabrication", 3 ], [ "textbook_fabrication", 4 ] ], "using": [ [ "blacksmithing_standard", 32 ], [ "steel_standard", 8 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "2x4", 1 ] ] ] @@ -2748,13 +3055,18 @@ "byproducts": [ [ "splinter", 14 ] ], "book_learn": [ [ "manual_fabrication", 3 ], [ "textbook_fabrication", 4 ] ], "using": [ [ "blacksmithing_standard", 32 ], [ "steel_standard", 8 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "2x4", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "ACTIVE_EXERCISE", "result": "hammer_sledge_short", "id_suffix": "from_cutting", "category": "CC_OTHER", @@ -2779,6 +3091,11 @@ "byproducts": [ [ "splinter", 13 ] ], "book_learn": [ [ "manual_fabrication", 3 ], [ "textbook_fabrication", 4 ] ], "using": [ [ "blacksmithing_standard", 32 ], [ "steel_standard", 20 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "2x4", 1 ] ] ] @@ -2795,6 +3112,11 @@ "byproducts": [ [ "splinter", 16 ] ], "book_learn": [ [ "manual_fabrication", 3 ], [ "textbook_fabrication", 4 ] ], "using": [ [ "blacksmithing_standard", 32 ], [ "steel_standard", 4 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "2x4", 1 ] ] ] @@ -2810,6 +3132,10 @@ "time": "8 h 40 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 32 ], [ "steel_standard", 8 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ], [ [ "swage", -1 ] ] ] }, @@ -2821,9 +3147,13 @@ "subcategory": "CSC_OTHER_CONTAINERS", "skill_used": "fabrication", "difficulty": 6, - "time": "30 m", + "time": "45 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, @@ -2838,22 +3168,32 @@ "time": "30 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "jackhammer", "category": "CC_OTHER", "subcategory": "CSC_OTHER_TOOLS", "skill_used": "mechanics", "difficulty": 5, - "time": "25 m", + "time": "6 h", "reversible": true, "decomp_learn": 5, "book_learn": [ [ "textbook_mechanics", 5 ], [ "textbook_carpentry", 5 ], [ "book_icef", 6 ] ], "using": [ [ "welding_standard", 10 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 3 }, { "id": "SCREW", "level": 1 }, { "id": "WRENCH", "level": 1 } ], "components": [ [ [ "1cyl_combustion", 1 ], [ "1cyl_combustion_small", 1 ] ], @@ -2959,6 +3299,7 @@ { "id": "WRENCH", "level": 1 } ], "tools": [ [ [ "welder", 100 ], [ "welder_crude", 150 ], [ "toolset", 150 ], [ "soldering_iron", 150 ], [ "oxy_torch", 20 ] ] ], + "proficiencies": [ { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 } ], "components": [ [ [ "pilot_light", 1 ] ], [ [ "steel_lump", 3 ], [ "steel_chunk", 12 ], [ "scrap", 36 ] ], @@ -2987,6 +3328,7 @@ { "id": "WRENCH", "level": 1 } ], "tools": [ [ [ "welder", 50 ], [ "welder_crude", 75 ], [ "toolset", 75 ], [ "soldering_iron", 75 ], [ "oxy_torch", 10 ] ] ], + "proficiencies": [ { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 } ], "components": [ [ [ "pilot_light", 1 ] ], [ [ "scrap", 4 ] ], [ [ "metal_tank_little", 1 ] ] ] }, { @@ -3000,6 +3342,11 @@ "time": "2 h 30 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -3014,6 +3361,11 @@ "time": "2 h 30 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -3029,6 +3381,11 @@ "autolearn": true, "book_learn": [ [ "textbook_fabrication", 4 ], [ "manual_fabrication", 4 ] ], "using": [ [ "welding_standard", 15 ], [ "steel_standard", 6 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 3 }, { "id": "SAW_M", "level": 1 }, @@ -3051,6 +3408,11 @@ "autolearn": true, "book_learn": [ [ "textbook_fabrication", 4 ], [ "manual_fabrication", 4 ] ], "using": [ [ "welding_standard", 15 ], [ "steel_standard", 6 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 3 }, { "id": "SAW_M", "level": 1 }, @@ -3075,11 +3437,16 @@ "skill_used": "fabrication", "skills_required": [ [ "electronics", 3 ] ], "difficulty": 7, - "time": "2 h 30 m", + "time": "4 h 30 m", "reversible": true, "autolearn": true, "book_learn": [ [ "textbook_fabrication", 7 ], [ "manual_fabrication", 7 ] ], "using": [ [ "soldering_standard", 25 ], [ "welding_standard", 20 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 3 }, { "id": "SAW_M", "level": 1 }, @@ -3106,6 +3473,11 @@ "time": "2 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 16 ], [ "steel_standard", 4 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -3127,6 +3499,7 @@ { "id": "WRENCH", "level": 1 } ], "tools": [ [ [ "welder", 150 ], [ "welder_crude", 225 ], [ "toolset", 225 ], [ "soldering_iron", 225 ], [ "oxy_torch", 30 ] ] ], + "proficiencies": [ { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 } ], "components": [ [ [ "steel_lump", 5 ], [ "steel_chunk", 20 ], [ "scrap", 60 ] ], [ [ "metal_tank_little", 1 ] ], @@ -3170,7 +3543,7 @@ "subcategory": "CSC_OTHER_CONTAINERS", "skill_used": "fabrication", "difficulty": 3, - "time": "1 h", + "time": "6 h", "autolearn": true, "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 2 }, { "id": "SAW_W", "level": 2 } ], "components": [ [ [ "2x4", 30 ] ], [ [ "scrap", 6 ] ] ] @@ -3187,6 +3560,10 @@ "time": "7 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 64 ], [ "steel_standard", 16 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, @@ -3199,15 +3576,19 @@ "subcategory": "CSC_OTHER_CONTAINERS", "skill_used": "fabrication", "difficulty": 8, - "time": "4 h 22 m 30 s", + "time": "4 h 20 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 40 ], [ "steel_standard", 10 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "55gal_drum", "id_suffix": "welded", "category": "CC_OTHER", @@ -3217,11 +3598,16 @@ "time": "42 m", "autolearn": true, "using": [ [ "welding_standard", 15 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "sheet_metal", 3 ], [ "sheet_metal_small", 72 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "30gal_drum", "id_suffix": "welded", "category": "CC_OTHER", @@ -3231,6 +3617,11 @@ "time": "26 m 15 s", "autolearn": true, "using": [ [ "welding_standard", 10 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "components": [ [ [ "sheet_metal", 2 ], [ "sheet_metal_small", 48 ] ] ] }, { @@ -3612,6 +4003,10 @@ "time": "1 h 30 m", "autolearn": true, "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_redsmithing", "required": false, "time_multiplier": 2 } + ], "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ], [ [ "forge", 50 ], [ "oxy_torch", 10 ] ] ], "components": [ [ [ "copper_scrap_equivalent", 7, "LIST" ] ] ] }, @@ -3624,8 +4019,8 @@ "skill_used": "fabrication", "skills_required": [ "mechanics", 2 ], "difficulty": 5, - "time": "15 m", - "autolearn": true, + "time": "45 m", + "book_learn": [ [ "carpentry_book", 5 ] ], "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 2 }, { "id": "SCREW", "level": 1 } ], "components": [ [ [ "scrap", 3 ] ], [ [ "cable", 2 ] ] ] }, @@ -3726,6 +4121,10 @@ "time": "2 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -3814,6 +4213,11 @@ "time": "3 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -3828,6 +4232,10 @@ "time": "1 h 30 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -3839,10 +4247,14 @@ "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "fabrication", "difficulty": 4, - "time": "1 h 30 m", + "time": "4 h 30 m", "autolearn": true, "using": [ [ "forging_standard", 10 ], [ "steel_standard", 5 ] ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 2 }, { "id": "SAW_W", "level": 2 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "tools": [ [ [ "swage", -1 ] ] ], "components": [ [ [ "2x4", 24 ] ], [ [ "nail", 40 ] ] ] }, @@ -3890,12 +4302,17 @@ "reversible": true, "autolearn": true, "using": [ [ "welding_standard", 3 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "sheet_metal_small", 4 ] ], [ [ "steel_chunk", 3 ], [ "scrap", 9 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "metal_funnel", "category": "CC_OTHER", "subcategory": "CSC_OTHER_TOOLS", @@ -3905,6 +4322,11 @@ "reversible": true, "autolearn": true, "using": [ [ "welding_standard", 3 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "sheet_metal", 1 ] ], [ [ "steel_chunk", 3 ], [ "scrap", 9 ] ] ] }, @@ -4153,6 +4575,11 @@ "autolearn": true, "book_learn": [ [ "manual_fabrication", 8 ], [ "textbook_fabrication", 6 ] ], "using": [ [ "blacksmithing_standard", 24 ], [ "steel_standard", 6 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -4509,61 +4936,81 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "v_scoop_item", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "mechanics", "difficulty": 5, - "time": "10 m", + "time": "20 m", "book_learn": [ [ "textbook_mechanics", 4 ] ], "reversible": true, "using": [ [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "pipe", 2 ] ], [ [ "sheet_metal", 1 ] ], [ [ "motor", 2 ] ], [ [ "processor", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "v_planter_item", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "mechanics", "difficulty": 5, - "time": "10 m", + "time": "20 m", "book_learn": [ [ "textbook_mechanics", 4 ] ], "reversible": true, "using": [ [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "pipe", 2 ] ], [ [ "sheet_metal", 1 ] ], [ [ "motor", 2 ] ], [ [ "wheel", 1 ] ], [ [ "processor", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "v_reaper_item", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "mechanics", "difficulty": 5, - "time": "10 m", + "time": "2 h", "book_learn": [ [ "textbook_mechanics", 4 ] ], "reversible": true, "using": [ [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "pipe", 2 ] ], [ [ "sheet_metal", 1 ] ], [ [ "frame", 1 ] ], [ [ "wheel", 1 ] ] ] }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "v_plow_item", "category": "CC_OTHER", "subcategory": "CSC_OTHER_PARTS", "skill_used": "mechanics", "difficulty": 5, - "time": "10 m", + "time": "2 h", "book_learn": [ [ "textbook_mechanics", 4 ] ], "reversible": true, "using": [ [ "welding_standard", 5 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "pipe", 2 ] ], @@ -4598,17 +5045,22 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "ACTIVE_EXERCISE", "result": "needle_curved", "category": "CC_OTHER", "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", "difficulty": 6, - "time": "4 h", + "time": "2 h", "autolearn": true, "using": [ [ "forging_standard", 4 ] ], "book_learn": [ [ "textbook_tailor", 3 ], [ "manual_tailor", 3 ] ], "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 }, + { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 2 } + ], "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ] ], "components": [ [ [ "scrap", 2 ] ] ] }, @@ -4863,7 +5315,7 @@ }, { "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "MODERATE_EXERCISE", "result": "pot_canning", "category": "CC_OTHER", "subcategory": "CSC_OTHER_CONTAINERS", @@ -4872,6 +5324,11 @@ "time": "1 h", "autolearn": true, "using": [ [ "welding_standard", 30 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding_basic", "required": false, "time_multiplier": 2.5, "fail_multiplier": 5 }, + { "proficiency": "prof_welding", "required": false, "time_multiplier": 2 } + ], "qualities": [ { "id": "HAMMER", "level": 3 }, { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "sheet_metal", 1 ] ] ] }, @@ -4907,6 +5364,10 @@ "autolearn": true, "book_learn": [ [ "textbook_fabrication", 4 ] ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_blacksmithing", "required": false, "time_multiplier": 2.5 } + ], "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, @@ -4920,6 +5381,7 @@ "time": "20 m", "autolearn": true, "qualities": [ { "id": "CUT", "level": 1 } ], + "proficiencies": [ { "proficiency": "prof_carving", "required": false, "time_multiplier": 2 } ], "components": [ [ [ "splinter", 1 ] ] ] }, { @@ -4949,7 +5411,7 @@ { "result": "anvil_bronze", "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "ACTIVE_EXERCISE", "category": "CC_OTHER", "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", @@ -4958,13 +5420,17 @@ "autolearn": true, "using": [ [ "forging_standard", 5 ] ], "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "ANVIL", "level": 1 } ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_redsmithing", "required": false, "time_multiplier": 2.5 } + ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "scrap_bronze", 10 ] ] ] }, { "result": "scrap_bronze", "type": "recipe", - "activity_level": "BRISK_EXERCISE", + "activity_level": "ACTIVE_EXERCISE", "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "fabrication", @@ -4973,6 +5439,10 @@ "batch_time_factors": [ 90, 4 ], "autolearn": true, "using": [ [ "forging_standard", 1 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking", "required": false, "time_multiplier": 1.5, "fail_multiplier": 5 }, + { "proficiency": "prof_redsmithing", "required": false, "time_multiplier": 2.5 } + ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "tin", 12 ] ], [ [ "copper_scrap_equivalent", 2, "LIST" ] ] ] }, @@ -4997,7 +5467,7 @@ "category": "CC_OTHER", "subcategory": "CSC_OTHER_TOOLS", "skill_used": "fabrication", - "time": "30 s", + "time": "45 m", "reversible": true, "autolearn": true, "qualities": [ { "id": "CUT", "level": 1 } ], @@ -5083,9 +5553,8 @@ "difficulty": 4, "time": "30 m", "book_learn": [ [ "plastics_book", 3 ] ], - "proficiencies": [ { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 2 } ], - "tools": [ [ [ "mold_plastic", -1 ] ], [ [ "surface_heat", 5, "LIST" ] ] ], - "components": [ [ [ "plastic_chunk", 1 ] ] ] + "using": [ [ "plastic_molding", 1 ] ], + "proficiencies": [ { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 2 } ] }, { "type": "recipe",