From b9e4a963dbcc07fb3861e63a46a732d85c32ff7e Mon Sep 17 00:00:00 2001 From: KurzedMetal Date: Fri, 27 Mar 2020 07:38:16 -0300 Subject: [PATCH] Fix wasteland sausage recipe smoked from raw wasteland sausage Wasteland sausage recipe from raw wasteland sausage consumes x2 recipe time but use x5 less Charcoal than than crafting directly from components. Also, even tho nutrition output match, it outputs x2 more units with 1/2 nutrition, making enjoy penalty be twice as worse. I don't see a reason why two-step cooking should be so different, I'm pretty sure it was probably an error when copy-pasteing from the original recipe. I fixed the recipe so both have similar time, component requirements and output. Making raw wasteland sausage first is still slightly slower process due to having to prepare it raw first. --- data/json/recipes/recipe_food.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/json/recipes/recipe_food.json b/data/json/recipes/recipe_food.json index d2e856113a851..2ce0e029c4452 100644 --- a/data/json/recipes/recipe_food.json +++ b/data/json/recipes/recipe_food.json @@ -5870,12 +5870,12 @@ "subcategory": "CSC_FOOD_MEAT", "skill_used": "cooking", "difficulty": 4, - "charges": 2, - "time": "1 h 10 m", + "charges": 1, + "time": "35 m", "autolearn": true, - "batch_time_factors": [ 83, 3 ], + "batch_time_factors": [ 83, 6 ], "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 1 } ], - "tools": [ [ [ "char_smoker", 1 ] ] ], + "tools": [ [ [ "char_smoker", 5 ] ] ], "components": [ [ [ "sausage_wasteland_raw", 1 ] ] ] }, {