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

Add butter to pie recipes. #38449

Closed
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion data/json/items/comestibles/meat_dishes.json
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@
"symbol": "%",
"quench": 5,
"healthy": 1,
"calories": 400,
"calories": 501,
"description": "A delicious baked pie with a delicious meat filling.",
"price": 1350,
"material": [ "wheat", "flesh" ],
Expand Down
2 changes: 1 addition & 1 deletion data/json/items/comestibles/offal_dishes.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"quench": 10,
"spoils_in": "3 days 8 hours",
"healthy": 3,
"calories": 358,
"calories": 459,
"description": "Also known as 'Umble' pie, made with chopped organ meats. Not half bad, and really good for you!",
"price": 1350,
"material": [ "wheat", "flesh" ],
Expand Down
2 changes: 1 addition & 1 deletion data/json/items/comestibles/veggy_dishes.json
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@
"symbol": "%",
"quench": 5,
"healthy": 1,
"calories": 490,
"calories": 591,
"description": "A delicious baked pie with a delicious vegetable filling.",
"price": 1250,
"material": [ "wheat", "veggy" ],
Expand Down
4 changes: 2 additions & 2 deletions data/json/items/comestibles/wheat.json
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@
"symbol": "%",
"quench": 5,
"healthy": 1,
"calories": 296,
"calories": 397,
"description": "A delicious baked pie with a sweet fruit filling.",
"price": 1250,
"material": [ "wheat", "fruit" ],
Expand Down Expand Up @@ -430,7 +430,7 @@
"symbol": "%",
"quench": 4,
"healthy": -1,
"calories": 300,
"calories": 401,
"description": "A sweet and delicious baked pie with pure maple syrup.",
"price": 1850,
"material": [ "wheat", "milk" ],
Expand Down
7 changes: 6 additions & 1 deletion data/json/recipes/food/offal_dishes.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,12 @@
"autolearn": true,
"qualities": [ { "id": "COOK", "level": 2 } ],
"tools": [ [ [ "surface_heat", 45, "LIST" ] ] ],
"components": [ [ [ "flour", 20 ] ], [ [ "meat_offal", 1, "LIST" ] ], [ [ "water", 1 ], [ "water_clean", 1 ] ] ]
"components": [
[ [ "flour", 20 ] ],
[ [ "any_butter", 8, "LIST" ] ],
[ [ "meat_offal", 1, "LIST" ] ],
[ [ "water", 1 ], [ "water_clean", 1 ] ]
]
},
{
"type": "recipe",
Expand Down
10 changes: 9 additions & 1 deletion data/json/recipes/recipe_food.json
Original file line number Diff line number Diff line change
Expand Up @@ -3348,6 +3348,7 @@
"tools": [ [ [ "surface_heat", 6, "LIST" ] ] ],
"components": [
[ [ "flour", 30 ] ],
[ [ "any_butter", 8, "LIST" ] ],
[ [ "sweet_fruit_like", 8, "LIST" ] ],
[ [ "sugar", 20 ], [ "syrup", 4 ], [ "beet_syrup", 4 ], [ "molasses", 4 ] ],
[ [ "water", 1 ], [ "water_clean", 1 ] ]
Expand All @@ -3365,7 +3366,12 @@
"autolearn": true,
"qualities": [ { "id": "COOK", "level": 2 } ],
"tools": [ [ [ "surface_heat", 6, "LIST" ] ] ],
"components": [ [ [ "flour", 30 ] ], [ [ "veggy_any", 8, "LIST" ], [ "wild_herbs", 40 ] ], [ [ "water", 1 ], [ "water_clean", 1 ] ] ]
"components": [
[ [ "flour", 30 ] ],
[ [ "any_butter", 8, "LIST" ] ],
[ [ "veggy_any", 8, "LIST" ], [ "wild_herbs", 40 ] ],
[ [ "water", 1 ], [ "water_clean", 1 ] ]
]
},
{
"type": "recipe",
Expand All @@ -3381,6 +3387,7 @@
"tools": [ [ [ "surface_heat", 6, "LIST" ] ] ],
"components": [
[ [ "flour", 30 ] ],
[ [ "any_butter", 8, "LIST" ] ],
[
[ "meat_red", 1, "LIST" ],
[ "dry_meat", 1 ],
Expand Down Expand Up @@ -3408,6 +3415,7 @@
"tools": [ [ [ "surface_heat", 6, "LIST" ] ] ],
"components": [
[ [ "flour", 30 ] ],
[ [ "any_butter", 8, "LIST" ] ],
[ [ "milk_standard_raw", 1, "LIST" ], [ "milk_powder", 1 ], [ "con_milk", 1 ] ],
[ [ "syrup", 5 ] ],
[ [ "water", 1 ], [ "water_clean", 1 ] ]
Expand Down