Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hellfire Stew #55943

Merged
merged 7 commits into from
Mar 20, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions data/json/items/comestibles/bread.json
Original file line number Diff line number Diff line change
Expand Up @@ -399,16 +399,16 @@
"symbol": "%",
"quench": -2,
"calories": 280,
"description": "A dry and virtually tasteless bread product capable of remaining edible without spoilage for vast lengths of time.",
"description": "A dry and virtually tasteless bread product capable of remaining edible without spoilage for vast lengths of time. So dry it is almost inedible by itself.",
"price": 125,
"price_postapoc": 150,
"material": [ "wheat" ],
"volume": "250 ml",
"charges": 2,
"flags": [ "EDIBLE_FROZEN" ],
"vitamins": [ [ "calcium", 2 ], [ "iron", 15 ] ],
"vitamins": [ [ "calcium", 2 ], [ "iron", 15 ], [ "bad_food", 10 ] ],
"stack_size": 20,
"fun": -1
"fun": -4
Maleclypse marked this conversation as resolved.
Show resolved Hide resolved
},
{
"type": "COMESTIBLE",
Expand Down
23 changes: 23 additions & 0 deletions data/json/items/comestibles/fruit_dishes.json
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,29 @@
"fun": 3,
"vitamins": [ [ "vitC", 3 ], [ "calcium", 2 ] ]
},
{
"type": "COMESTIBLE",
"id": "hardtack_pudding",
"looks_like": "biscuit",
"name": { "str": "hardtack pudding" },
"weight": "250 g",
"color": "brown",
"spoils_in": "5 days",
"container": "can_medium",
"comestible_type": "DRINK",
"symbol": "o",
"quench": 2,
"calories": 100,
"description": "An old recipe from the American Civil War. First you crush your hardtack into flour with whatever object you have at hand then combine it with the water and regular flour to make a dough. You're going to want to knead in the dried fruits. Boil up your dough into pbread pudding chunks. Finally you add the sweetener. Soldiers would call this a dessert.",
Maleclypse marked this conversation as resolved.
Show resolved Hide resolved
"price": 50,
"price_postapoc": 100,
"material": [ "flesh", "wheat" ],
"volume": "500 ml",
"charges": 4,
"phase": "liquid",
"flags": [ "EATEN_HOT", "USE_EAT_VERB" ],
"vitamins": [ [ "vitC", 2 ], [ "iron", 15 ], [ "bad_food", 2 ] ]
},
{
"type": "COMESTIBLE",
"id": "brandied_fruit",
Expand Down
23 changes: 23 additions & 0 deletions data/json/items/comestibles/soup.json
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,29 @@
"vitamins": [ [ "vitC", 9 ], [ "iron", 3 ] ],
"fun": 1
},
{
"type": "COMESTIBLE",
"id": "hellfire_stew",
"looks_like": "soup_woods",
"name": { "str": "hellfire stew" },
"weight": "250 g",
"color": "brown",
"spoils_in": "5 days",
"container": "can_medium",
"comestible_type": "DRINK",
"symbol": "o",
"quench": 2,
"calories": 504,
"description": "An old recipe from the American Civil War. First you crush your hardtack into chunks with whatever object you have at hand then combine it with the water to make the tack soggy. You're going to want to melt down your fat. Add salt and pepper. Then you'll fry up the soggy chunks in the fat til the fat is absorbed into the chunks and browned. It's edible.",
"price": 50,
"price_postapoc": 100,
"material": [ "flesh", "wheat" ],
"volume": "500 ml",
"charges": 4,
"phase": "liquid",
"flags": [ "EATEN_HOT", "USE_EAT_VERB" ],
"vitamins": [ [ "calcium", 2 ], [ "iron", 15 ], [ "bad_food", 6 ] ]
},
{
"type": "COMESTIBLE",
"id": "soup_chicken",
Expand Down
39 changes: 39 additions & 0 deletions data/json/recipes/recipe_food.json
Original file line number Diff line number Diff line change
Expand Up @@ -2942,6 +2942,45 @@
"tools": [ [ [ "surface_heat", 5, "LIST" ] ] ],
"using": [ [ "woods_soup_ingredients_veggy", 1 ] ]
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
"result": "hellfire_stew",
"charges": 4,
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_MEAT",
"skill_used": "cooking",
"difficulty": 1,
"time": "20 m",
"autolearn": true,
"batch_time_factors": [ 80, 4 ],
"qualities": [ { "id": "COOK", "level": 3 } ],
"tools": [ [ [ "surface_heat", 5, "LIST" ] ] ],
"using": [ [ "edible_fat", 1 ] ],
"components": [ [ [ "hardtack", 1 ] ], [ [ "salt", 1 ] ], [ [ "pepper", 1 ] ], [ [ "water", 2 ], [ "water_clean", 2 ] ] ]
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
"result": "hardtack_pudding",
"charges": 4,
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_MEAT",
"skill_used": "cooking",
"difficulty": 1,
"time": "20 m",
"autolearn": true,
"batch_time_factors": [ 80, 4 ],
"qualities": [ { "id": "COOK", "level": 3 } ],
"tools": [ [ [ "surface_heat", 5, "LIST" ] ] ],
"components": [
[ [ "hardtack", 1 ] ],
[ [ "flour_any", 1, "LIST" ] ],
[ [ "sugar_standard", 1, "LIST" ] ],
[ [ "sweet_fruit_like", 1, "LIST" ] ],
[ [ "water", 2 ], [ "water_clean", 2 ] ]
]
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
Expand Down