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 a butchering kit made of butcher knife, carving knife and meat cleaver #39501

Merged
merged 9 commits into from
Apr 19, 2020
1 change: 1 addition & 0 deletions data/json/itemgroups/food_service.json
Original file line number Diff line number Diff line change
Expand Up @@ -1068,6 +1068,7 @@
"entries": [
{ "item": "knife_steak", "prob": 20 },
{ "item": "knife_butcher", "prob": 30 },
{ "item": "butchering_kit", "prob": 5 },
{ "item": "tongs", "prob": 10 },
{ "item": "carver_off", "prob": 5 },
{ "item": "meat", "prob": 1 },
Expand Down
13 changes: 13 additions & 0 deletions data/json/items/tool/cooking.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@
"//": "It would be nice if this could have a use action to thaw frozen stuff. It's not hot enough to work as a hotplate.",
"flags": [ "LEAK_DAM", "RADIOACTIVE", "DURABLE_MELEE" ]
},
{
"id": "butchering_kit",
"name": { "str": "butchering kit", "str_pl": "butchering kits" },
"type": "TOOL",
"description": "This is a kit with all the specialized knifes you would need for deboning, skinning and preparing the cuts of meat from an animal.",
ampersand55 marked this conversation as resolved.
Show resolved Hide resolved
"copy-from": "base_kitchen_knife",
"looks_like": "knife_butcher",
"weight": "1170 g",
"volume": "800 ml",
"price": 8000,
"price_postapoc": 150,
"qualities": [ [ "CUT", 1 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 37 ] ]
},
{
"id": "butter_churn",
"type": "TOOL",
Expand Down
17 changes: 17 additions & 0 deletions data/json/recipes/other/tool.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,23 @@
"tools": [ [ [ "swage", -1 ] ] ],
"components": [ [ [ "scrap", 2 ] ] ]
},
{
"result": "butchering_kit",
"type": "recipe",
"category": "CC_OTHER",
"subcategory": "CSC_OTHER_TOOLS",
"skill_used": "fabrication",
"reversible": true,
"time": "30 s",
"autolearn": true,
"components": [
[ [ "knife_butcher", 1 ] ],
[ [ "knife_carving", 1 ] ],
[ [ "knife_meat_cleaver", 1 ] ],
[ [ "leather", 2 ], [ "rag", 2 ] ],
[ [ "string_6", 2 ], [ "cordage_6", 2 ] ]
]
},
{
"result": "shears",
"type": "recipe",
Expand Down