Skip to content

Commit

Permalink
1. Tallow weight was halved, but not calories. Fix to be correct.
Browse files Browse the repository at this point in the history
2. Hotdog recipe produced too few hotdogs: recalculate from first principles.
3. Bratwurst recipe produced too many bratwürste: recalculate from first principles.

Hotdog:

meat_nofish is 300-400kcal (comment). This matches meat_red at 300g.
A hotdog weighs 43g (apparently a mini?); hence the recipe should produce
~12 hotdogs for 2 meat_red. Halve the number of sausage casings cause
let's be honest; you're not using a full sausage casing for a 43g sausage.

Bratwurst:

A bratwurst should mix fat to meat at 1:3. Since edible_fat is 220g, edible_tallow_lard (55g) needs to be x4.
This matches the 2 meat_red for 600g and 1:3 ratio.
At 820g total and 100g for the Bratwurst, we get 8 charges out.
  • Loading branch information
FeepingCreature committed Nov 19, 2020
1 parent c764d46 commit a8c026c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion data/json/items/comestibles/carnivore.json
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@
"symbol": "%",
"quench": -10,
"healthy": -1,
"calories": 992,
"calories": 496,
"description": "A smooth white block of cleaned and rendered animal fat. It will remain edible for a very long time, and can be used as an ingredient in many foods and projects.",
"price": 500,
"price_postapoc": 800,
Expand Down
4 changes: 2 additions & 2 deletions data/json/recipes/food/offal_dishes.json
Original file line number Diff line number Diff line change
Expand Up @@ -425,14 +425,14 @@
"subcategory": "CSC_FOOD_MEAT",
"skill_used": "cooking",
"difficulty": 4,
"charges": 2,
"charges": 12,
"time": "10 m",
"book_learn": [ [ "offalcooking", 3 ] ],
"batch_time_factors": [ 50, 3 ],
"qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 1 } ],
"components": [
[ [ "meat_nofish", 2, "LIST" ] ],
[ [ "sausage_casings", 2 ] ],
[ [ "sausage_casings", 6 ] ],
[
[ "salt_water", 4 ],
[ "saline", 8 ],
Expand Down
5 changes: 3 additions & 2 deletions data/json/recipes/recipe_food.json
Original file line number Diff line number Diff line change
Expand Up @@ -881,9 +881,10 @@
"batch_time_factors": [ 83, 3 ],
"qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 1 } ],
"tools": [ [ [ "surface_heat", 7, "LIST" ] ] ],
"charges": 8,
"components": [
[ [ "meat_red", 2, "LIST" ], [ "can_chicken", 2 ] ],
[ [ "edible_fat", 1, "LIST" ], [ "edible_tallow_lard", 2, "LIST" ] ],
[ [ "edible_fat", 1, "LIST" ], [ "edible_tallow_lard", 4, "LIST" ] ],
[
[ "salt", 4 ],
[ "soysauce", 2 ],
Expand All @@ -892,7 +893,7 @@
[ "seasoning_salt", 4 ],
[ "pepper", 4 ]
],
[ [ "sausage_casings", 1 ] ]
[ [ "sausage_casings", 8 ] ]
]
},
{
Expand Down

0 comments on commit a8c026c

Please sign in to comment.