diff options
| author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-10-12 09:42:07 -0700 | 
|---|---|---|
| committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-10-12 09:42:07 -0700 | 
| commit | 1b37ef4484c8a55970470a060adce65f51b95196 (patch) | |
| tree | ca19ca495a8b8fdb6c0fed97472b3df41c182154 /json | |
| parent | Several fixes for low difficulty foods used by basecamp crafting. (diff) | |
| download | cataclysm-bn-mod_recipe-fixes-1b37ef4484c8a55970470a060adce65f51b95196.tar.xz | |
Fix typos in the tv dinner and hotdog overrides.
Diffstat (limited to 'json')
| -rw-r--r-- | json/items/comestible/junkfood.json | 8 | ||||
| -rw-r--r-- | json/recipes/food/meat.json | 10 | 
2 files changed, 12 insertions, 6 deletions
diff --git a/json/items/comestible/junkfood.json b/json/items/comestible/junkfood.json index 87cd6aa..94ee61f 100644 --- a/json/items/comestible/junkfood.json +++ b/json/items/comestible/junkfood.json @@ -188,14 +188,14 @@      "id": "cooked_dinner",      "copy-from": "cooked_dinner",      "name": { "str": "cooked tv dinner" }, -    "volume": "500 mL", -    "charges": "1", +    "volume": "500 ml", +    "charges": 1,      "//": "Reduce the charges to 1 so that a single tv dinner can be cooked."    },    {      "type": "COMESTIBLE", -    "id": "hotdogs_uncooked", -    "copy-from": "hotdogs_uncooked", +    "id": "hotdogs_frozen", +    "copy-from": "hotdogs_frozen",      "name": { "str": "raw hot dog" },      "description": "A raw, heavily processed sausage, that was commonplace at baseball games before the Cataclysm.",      "//": "Change the name to make it more clear this is raw." diff --git a/json/recipes/food/meat.json b/json/recipes/food/meat.json index 92d868c..9ca413d 100644 --- a/json/recipes/food/meat.json +++ b/json/recipes/food/meat.json @@ -306,7 +306,13 @@      "batch_time_factors": [ 80, 1 ],      "qualities": [ { "id": "COOK", "level": 1 } ],      "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], -    "components": [ [ [ "hotdogs_frozen", 1 ], [ "homemade_hotdogs", 1 ], [ "bratwurst_sausage", 1 ] ] ] +    "components": [ +      [ +        [ "hotdogs_frozen", 1 ], +        [ "homemade_hotdogs", 1 ], +        [ "bratwurst_sausage", 1 ] +      ] +    ]    },    {      "type": "recipe", @@ -340,7 +346,7 @@      "components": [        [          [ "hotdogs_frozen", 1 ], -        [ "hotdogs_uncooked", 1 ], +        [ "homemade_hotdogs", 1 ],          [ "bratwurst_sausage", 1 ],          [ "sausage_wasteland" , 1 ]        ],  | 
