diff options
Diffstat (limited to 'json/items')
-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." } ] |