diff options
| author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-05-16 14:52:20 -0700 | 
|---|---|---|
| committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-05-16 14:52:20 -0700 | 
| commit | ea3208c59d25fbb98845fe792e5aab618e0387bd (patch) | |
| tree | 7a90696abb22cd1af2b697624112476d3676b8fe | |
| parent | Import string recipe from faction-camp-recipe1 mod. (diff) | |
| download | cataclysm-bn-mod_recipe-fixes-ea3208c59d25fbb98845fe792e5aab618e0387bd.tar.xz | |
Add recipes for canned corn, large tin cans, and large canning.
| -rw-r--r-- | Readme.txt | 17 | ||||
| -rw-r--r-- | json/recipes/food/canned.json | 137 | ||||
| -rw-r--r-- | json/recipes/other/containers.json | 20 | 
3 files changed, 174 insertions, 0 deletions
@@ -131,3 +131,20 @@ Any recipe that used condensed milk as a milk source and not as a sugar source.  --  Fix bionic scanner to be a tool instead of an other.  It is obviously a tool. It should be sorted as such. + +-- +String from rags recipe. +This allows npcs to assist in batches. + +-- +Small and Large Tin Can recipes. +Mediums could be crafted, so now so can these. + +-- +Canned Corn. +Why wasn't this a recipe already? No idea. Now it is. + +-- +Canning with Large Tin Cans. +Previously large tin cans were pure trash. Now they can be put to use. +Specifically the four types found in vanilla: beans, corn, tomato, red sauce. diff --git a/json/recipes/food/canned.json b/json/recipes/food/canned.json index 1a8a400..e51dc94 100644 --- a/json/recipes/food/canned.json +++ b/json/recipes/food/canned.json @@ -126,5 +126,142 @@        [ [ "can_medium_unsealed", 1 ] ],        [ [ "scrap", 1 ] ]      ] +  }, +  { +    "type": "recipe", +    "result": "can_beans", +    "id_suffix": "canned_3l", +    "container": "can_food_big", +    "category": "CC_FOOD", +    "subcategory": "CSC_FOOD_VEGGI", +    "skill_used": "cooking", +    "difficulty": 4, +    "time": "36 m", +    "book_learn": [ [ "manual_sealing", 3 ] ], +    "contained": true, +    "batch_time_factors": [ 80, 5 ], +    "charges": 6, +    "qualities": [ +      { "id": "SAW_M", "level": 1 }, +      { "id": "HAMMER", "level": 1 }, +      { "id": "CUT", "level": 1 }, +      { "id": "COOK", "level": 3 } +    ], +    "tools": [ [ [ "surface_heat", 20, "LIST" ] ], [ [ "can_sealer", -1 ] ] ], +    "components": [ +      [ [ "can_food_big_unsealed", 1 ] ], +      [ [ "scrap", 1 ] ], +      [ [ "water", 1 ], [ "water_clean", 1 ] ], +      [ [ "beans_cooked", 12 ], [ "dry_beans", 12 ], [ "raw_beans", 12 ] ] +    ] +  }, +  { +    "type": "recipe", +    "result": "can_tomato", +    "id_suffix": "canned_3l", +    "container": "can_food_big", +    "category": "CC_FOOD", +    "subcategory": "CSC_FOOD_VEGGI", +    "skill_used": "cooking", +    "difficulty": 4, +    "time": "36 m", +    "book_learn": [ [ "manual_sealing", 3 ] ], +    "contained": true, +    "batch_time_factors": [ 80, 5 ], +    "charges": 24, +    "qualities": [ +      { "id": "SAW_M", "level": 1 }, +      { "id": "HAMMER", "level": 1 }, +      { "id": "CUT", "level": 1 }, +      { "id": "COOK", "level": 3 } +    ], +    "tools": [ [ [ "surface_heat", 20, "LIST" ] ], [ [ "can_sealer", -1 ] ] ], +    "components": [ +      [ [ "can_food_big_unsealed", 1 ] ], +      [ [ "scrap", 1 ] ], +      [ [ "water", 1 ], [ "water_clean", 1 ] ], +      [ [ "tomato", 24 ], [ "irradiated_tomato", 24 ] ] +    ] +  }, +  { +    "type": "recipe", +    "result": "sauce_red", +    "id_suffix": "canned_3l", +    "container": "can_food_big", +    "category": "CC_FOOD", +    "subcategory": "CSC_FOOD_VEGGI", +    "skill_used": "cooking", +    "difficulty": 4, +    "time": "1 h", +    "book_learn": [ [ "manual_sealing", 3 ] ], +    "contained": true, +    "batch_time_factors": [ 80, 5 ], +    "charges": 48, +    "qualities": [ +      { "id": "SAW_M", "level": 1 }, +      { "id": "HAMMER", "level": 1 }, +      { "id": "CUT", "level": 1 }, +      { "id": "COOK", "level": 3 } +    ], +    "tools": [ [ [ "surface_heat", 20, "LIST" ] ], [ [ "can_sealer", -1 ] ] ], +    "components": [ +      [ [ "can_food_big_unsealed", 1 ] ], +      [ [ "scrap", 1 ] ], +      [ [ "water", 1 ], [ "water_clean", 1 ] ], +      [ [ "can_tomato", 12 ], [ "tomato", 12 ], [ "irradiated_tomato", 12 ] ] +    ] +  }, +  { +    "type": "recipe", +    "result": "can_corn", +    "category": "CC_FOOD", +    "subcategory": "CSC_FOOD_VEGGI", +    "skill_used": "cooking", +    "difficulty": 4, +    "time": "24 m", +    "book_learn": [ [ "manual_sealing", 3 ] ], +    "contained": true, +    "batch_time_factors": [ 80, 5 ], +    "qualities": [ +      { "id": "SAW_M", "level": 1 }, +      { "id": "HAMMER", "level": 1 }, +      { "id": "CUT", "level": 1 }, +      { "id": "COOK", "level": 3 } +    ], +    "tools": [ [ [ "surface_heat", 10, "LIST" ] ], [ [ "can_sealer", -1 ] ] ], +    "components": [ +      [ [ "can_medium_unsealed", 1 ] ], +      [ [ "scrap", 1 ] ], +      [ [ "water", 1 ], [ "water_clean", 1 ] ], +      [ [ "corn", 2 ], [ "irradiated_corn", 2 ] ] +    ] +  }, +  { +    "type": "recipe", +    "result": "can_corn", +    "id_suffix": "canned_3l", +    "container": "can_food_big", +    "category": "CC_FOOD", +    "subcategory": "CSC_FOOD_VEGGI", +    "skill_used": "cooking", +    "difficulty": 4, +    "time": "36 m", +    "book_learn": [ [ "manual_sealing", 3 ] ], +    "contained": true, +    "batch_time_factors": [ 80, 5 ], +    "charges": 12, +    "qualities": [ +      { "id": "SAW_M", "level": 1 }, +      { "id": "HAMMER", "level": 1 }, +      { "id": "CUT", "level": 1 }, +      { "id": "COOK", "level": 3 } +    ], +    "tools": [ [ [ "surface_heat", 20, "LIST" ] ], [ [ "can_sealer", -1 ] ] ], +    "components": [ +      [ [ "can_medium_unsealed", 1 ] ], +      [ [ "scrap", 1 ] ], +      [ [ "water", 1 ], [ "water_clean", 1 ] ], +      [ [ "corn", 12 ], [ "irradiated_corn", 12 ] ] +    ]    }  ] diff --git a/json/recipes/other/containers.json b/json/recipes/other/containers.json index 5fcdb1b..7034a88 100644 --- a/json/recipes/other/containers.json +++ b/json/recipes/other/containers.json @@ -17,5 +17,25 @@      "tools": [        [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ]      ] +  }, +  { +    "type": "recipe", +    "//": "Based on the medium tin can, with additional time/materials based on the difference between the half and 3 litre glass jars.", +    "result": "can_food_big_unsealed", +    "byproducts": [ [ "can_food_unsealed", 1 ] ], +    "category": "CC_OTHER", +    "subcategory": "CSC_OTHER_CONTAINERS", +    "skill_used": "fabrication", +    "difficulty": 3, +    "time": "1 h 10 m", +    "autolearn": true, +    "using": [ +      [ "blacksmithing_standard", 3 ], +      [ "steel_tiny", 3 ] +    ], +    "qualities": [ { "id": "CHISEL", "level": 3 } ], +    "tools": [ +      [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] +    ]    }  ]  | 
