diff options
| -rw-r--r-- | Readme.txt | 1 | ||||
| -rw-r--r-- | json/recipes/food/meat.json | 26 | 
2 files changed, 27 insertions, 0 deletions
@@ -102,6 +102,7 @@ They could already use human flesh, may as well add the human stomachs.  Smoked/Sweet sausages:  Now require sausage casings.  All the other sausages did. +Also fix bratwurst to require 10 casings as the portion size would suggest.  --  Sausage casings can be made with clean water: diff --git a/json/recipes/food/meat.json b/json/recipes/food/meat.json index 000a8ee..d977b63 100644 --- a/json/recipes/food/meat.json +++ b/json/recipes/food/meat.json @@ -566,5 +566,31 @@        [ [ "water", 2 ], [ "water_clean", 2 ] ],        [ [ "bag_plastic", 1 ] ]      ] +  }, +  { +    "type": "recipe", +    "result": "bratwurst_sausage", +    "category": "CC_FOOD", +    "subcategory": "CSC_FOOD_MEAT", +    "skill_used": "cooking", +    "difficulty": 4, +    "time": "1 h", +    "book_learn": [ [ "family_cookbook", 2 ], [ "scots_cookbook", 2 ] ], +    "batch_time_factors": [ 80, 5 ], +    "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 1 } ], +    "tools": [ [ [ "surface_heat", 7, "LIST" ] ] ], +    "components": [ +      [ [ "meat_red", 2, "LIST" ], [ "can_chicken", 2 ] ], +      [ [ "edible_fat", 1, "LIST" ], [ "edible_tallow_lard", 2, "LIST" ] ], +      [ +        [ "salt", 4 ], +        [ "soysauce", 2 ], +        [ "seasoning_italian", 4 ], +        [ "wild_herbs", 4 ], +        [ "seasoning_salt", 4 ], +        [ "pepper", 4 ] +      ], +      [ [ "sausage_casings", 10 ], [ "stomach", 1 ], [ "stomach_large", 1 ] ] +    ]    }  ]  | 
