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

Added Butter Dogs #39162

Closed
wants to merge 22 commits into from
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
29 changes: 29 additions & 0 deletions data/json/items/comestibles/sandwich.json
Original file line number Diff line number Diff line change
Expand Up @@ -341,5 +341,34 @@
"flags": [ "EATEN_HOT" ],
"fun": 5,
"vitamins": [ [ "vitA", 8 ], [ "vitC", 10 ], [ "calcium", 7 ], [ "iron", 18 ], [ "vitB", 20 ] ]
},
{
"id": "sandwich_butter",
"copy-from": "sandwich_fairy",
"type": "COMESTIBLE",
"name": { "str": "butter dog", "str_pl": "butter dogs" },
"color": "brown",
"calories": 1100,
"description": "A simple sandwich, if you can even call it that, composed of bread and a whole stick of butter. Frankly disgusting but it works in a pinch.",
"fun": -1
},
{
"type": "COMESTIBLE",
"id": "bread_buttered",
"name": { "str": "buttered bread", "str_pl": "buttered breads" },
"weight": "85887 mg",
"color": "brown",
"spoils_in": "3 days",
"container": "wrapper",
"comestible_type": "FOOD",
"symbol": "%",
"calories": 286,
"description": "A simple sandwich, of spread butter. Easy and delicious, the perfect snack to start your day. ",
"price": 85,
"material": [ "milk", "wheat" ],
"looks_like": "sandwich_pb",
"primary_material": "wheat",
"volume": "250 ml",
"fun": 2
}
]
36 changes: 36 additions & 0 deletions data/json/recipes/recipe_food.json
Original file line number Diff line number Diff line change
Expand Up @@ -4580,6 +4580,27 @@
[ [ "sprinkles", 3 ] ]
]
},
{
"type": "recipe",
"result": "sandwich_butter",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_SNACK",
"skill_used": "cooking",
"time": "5 s",
"charges": 1,
"autolearn": true,
"components": [
[
[ "flatbread", 1 ],
[ "bread", 1 ],
[ "cornbread", 1 ],
[ "wastebread", 1 ],
[ "sourdough_bread", 1 ],
[ "brioche", 1 ]
],
[ [ "any_butter", 8, "LIST" ], [ "ghee", 8 ] ]
]
},
{
"type": "recipe",
"result": "toasterpastry",
Expand Down Expand Up @@ -6310,5 +6331,20 @@
"qualities": [ { "id": "COOK", "level": 2 } ],
"tools": [ [ [ "surface_heat", 7, "LIST" ] ] ],
"components": [ [ [ "fiddlehead_boiled", 2 ] ], [ [ "any_butter_or_oil", 1, "LIST" ] ] ]
},
{
"type": "recipe",
"result": "bread_buttered",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_SNACK",
"skill_used": "cooking",
"time": "15 s",
"charges": 1,
"autolearn": true,
"qualities": [ { "id": "CUT", "level": 1 } ],
"components": [
[ [ "flatbread", 1 ], [ "bread", 1 ], [ "cornbread", 1 ], [ "sourdough_bread", 1 ], [ "brioche", 1 ] ],
[ [ "any_butter", 2, "LIST" ], [ "ghee", 2 ] ]
]
}
]