From 553de93950ce031afad40491cd35c6501d6de52a Mon Sep 17 00:00:00 2001 From: anoobindisguise <56016372+anoobindisguise@users.noreply.github.com> Date: Tue, 12 Oct 2021 18:49:39 -0700 Subject: [PATCH] Add fried meat (#52238) * add fried meat recipe * fried meat * fried meat can be used in recipes --- data/json/items/comestibles/carnivore.json | 19 ++++++++++++++++++ data/json/recipes/recipe_food.json | 20 +++++++++++++++++++ .../json/requirements/cooking_components.json | 6 ++++-- 3 files changed, 43 insertions(+), 2 deletions(-) diff --git a/data/json/items/comestibles/carnivore.json b/data/json/items/comestibles/carnivore.json index d65405e92c306..b3ce8dbe93f6c 100644 --- a/data/json/items/comestibles/carnivore.json +++ b/data/json/items/comestibles/carnivore.json @@ -1442,5 +1442,24 @@ "price": 0, "price_postapoc": 10, "material": [ "bone" ] + }, + { + "id": "meat_fried", + "copy-from": "meat_cooked", + "type": "COMESTIBLE", + "name": { "str": "fried meat" }, + "conditional_names": [ + { "type": "FLAG", "condition": "CANNIBALISM", "name": { "str_sp": "fried fool" } }, + { "type": "FLAG", "condition": "STRICT_HUMANITARIANISM", "name": { "str_sp": "fried familiar" } }, + { "type": "COMPONENT_ID", "condition": "mutant", "name": { "str_sp": "%s, mutant" } } + ], + "description": "Delicious oil-fried meat.", + "color": "brown", + "price_postapoc": 200, + "quench": -1, + "fun": 6, + "healthy": -1, + "weight": "298 g", + "flags": [ "EATEN_HOT" ] } ] diff --git a/data/json/recipes/recipe_food.json b/data/json/recipes/recipe_food.json index 70fe722fe44dd..677b6df33a549 100644 --- a/data/json/recipes/recipe_food.json +++ b/data/json/recipes/recipe_food.json @@ -8023,5 +8023,25 @@ "tools": [ [ [ "surface_heat", 2, "LIST" ] ] ], "charges": 1, "components": [ [ [ "meatball_raw", 1 ] ] ] + }, + { + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "result": "meat_fried", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_MEAT", + "skill_used": "cooking", + "time": "10 m", + "autolearn": true, + "difficulty": 1, + "batch_time_factors": [ 67, 5 ], + "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 2 } ], + "tools": [ [ [ "surface_heat", 8, "LIST" ] ] ], + "proficiencies": [ + { "proficiency": "prof_food_prep" }, + { "proficiency": "prof_knife_skills", "time_multiplier": 1.5 }, + { "proficiency": "prof_frying" } + ], + "components": [ [ [ "meat_red", 1, "LIST" ] ], [ [ "fry_oil", 1, "LIST" ] ] ] } ] diff --git a/data/json/requirements/cooking_components.json b/data/json/requirements/cooking_components.json index 33ec492e1c1b7..d3cbd241cb366 100644 --- a/data/json/requirements/cooking_components.json +++ b/data/json/requirements/cooking_components.json @@ -314,7 +314,8 @@ [ "dry_meat", 1 ], [ "jerky", 1 ], [ "meat_smoked", 1 ], - [ "meat_salted", 1 ] + [ "meat_salted", 1 ], + [ "meat_fried", 1 ] ] ] }, @@ -356,7 +357,8 @@ [ "meat_aspic", 1 ], [ "sausage", 1 ], [ "sausage_cooked", 1 ], - [ "bratwurst_sausage", 1 ] + [ "bratwurst_sausage", 1 ], + [ "meat_fried", 1 ] ] ] },