Skip to content

Commit

Permalink
Add fried meat (CleverRaven#52238)
Browse files Browse the repository at this point in the history
* add fried meat recipe

* fried meat

* fried meat can be used in recipes
  • Loading branch information
anoobindisguise authored Oct 13, 2021
1 parent 76a2f8f commit 553de93
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 2 deletions.
19 changes: 19 additions & 0 deletions data/json/items/comestibles/carnivore.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
}
]
20 changes: 20 additions & 0 deletions data/json/recipes/recipe_food.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" ] ] ]
}
]
6 changes: 4 additions & 2 deletions data/json/requirements/cooking_components.json
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,8 @@
[ "dry_meat", 1 ],
[ "jerky", 1 ],
[ "meat_smoked", 1 ],
[ "meat_salted", 1 ]
[ "meat_salted", 1 ],
[ "meat_fried", 1 ]
]
]
},
Expand Down Expand Up @@ -356,7 +357,8 @@
[ "meat_aspic", 1 ],
[ "sausage", 1 ],
[ "sausage_cooked", 1 ],
[ "bratwurst_sausage", 1 ]
[ "bratwurst_sausage", 1 ],
[ "meat_fried", 1 ]
]
]
},
Expand Down

0 comments on commit 553de93

Please sign in to comment.