diff options
| author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-09-06 20:28:35 -0700 | 
|---|---|---|
| committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-09-06 20:28:35 -0700 | 
| commit | b0c9a69b0da01385ded76c15945e0e35e1e00dfc (patch) | |
| tree | d6a04a56d9868bfa9d1b747cff7a14b7d9ae72a8 /json | |
| parent | Fix salted fish using plastic bags as a container instead of vacuum sealed bags. (diff) | |
| download | cataclysm-bn-mod_recipe-fixes-b0c9a69b0da01385ded76c15945e0e35e1e00dfc.tar.xz | |
Fix containers of salted meat slices, pickled meat, pickled fish, and pickled veggies spawning half full.
Diffstat (limited to 'json')
| -rw-r--r-- | json/items/comestible/meat_dishes.json | 35 | ||||
| -rw-r--r-- | json/items/comestible/veggy_dishes.json | 9 | 
2 files changed, 44 insertions, 0 deletions
| diff --git a/json/items/comestible/meat_dishes.json b/json/items/comestible/meat_dishes.json index 7674b98..496ad2d 100644 --- a/json/items/comestible/meat_dishes.json +++ b/json/items/comestible/meat_dishes.json @@ -80,6 +80,32 @@    },    {      "type": "COMESTIBLE", +    "id": "meat_salted", +    "copy-from": "meat_salted", +    "name": "salted meat slice", +    "conditional_names": [ +      { "type": "FLAG", "condition": "CANNIBALISM", "name": "salted simpleton slice" }, +      { "type": "COMPONENT_ID", "condition": "mutant", "name": { "str_sp": "%s, mutant" } } +    ], +    "volume": "500 ml", +    "charges": 2, +    "//": "Fix sealed containers from spawning half filled by increasing the charges and volume." +  }, +  { +    "type": "COMESTIBLE", +    "id": "meat_pickled", +    "copy-from": "meat_pickled", +    "name": "pickled meat", +    "conditional_names": [ +      { "type": "FLAG", "condition": "CANNIBALISM", "name": "pickled punk" }, +      { "type": "COMPONENT_ID", "condition": "mutant", "name": { "str_sp": "%s, mutant" } } +    ], +    "volume": "500 ml", +    "charges": 2, +    "//": "Fix sealed containers from spawning half filled by increasing the charges and volume." +  }, +  { +    "type": "COMESTIBLE",      "id": "dry_meat",      "copy-from": "dry_meat",      "name": "dehydrated meat", @@ -95,5 +121,14 @@      "copy-from": "dry_meat_tainted",      "name": { "str": "dehydrated tainted meat" },      "spoils_in": "364 days" +  }, +  { +    "type": "COMESTIBLE", +    "id": "fish_pickled", +    "copy-from": "fish_pickled", +    "name": { "str_sp": "pickled fish" }, +    "volume": "500 ml", +    "charges": 2, +    "//": "Fix sealed containers from spawning half filled by increasing the charges and volume."    }  ] diff --git a/json/items/comestible/veggy_dishes.json b/json/items/comestible/veggy_dishes.json index ab4db88..42c3e27 100644 --- a/json/items/comestible/veggy_dishes.json +++ b/json/items/comestible/veggy_dishes.json @@ -40,5 +40,14 @@      "copy-from": "sauerkraut",      "name": { "str_sp": "sauerkraut" },      "spoils_in": "30 days" +  }, +  { +    "type": "COMESTIBLE", +    "id": "veggy_pickled", +    "copy-from": "veggy_pickled", +    "name": { "str": "pickled veggy", "str_pl": "pickled veggies" }, +    "volume": "500 ml", +    "charges": 2, +    "//": "Fix sealed containers from spawning half filled by increasing the charges and volume."    }  ] | 
