diff --git a/data/json/items/comestibles/other.json b/data/json/items/comestibles/other.json index 9fca8a82ad007..8161a65974945 100644 --- a/data/json/items/comestibles/other.json +++ b/data/json/items/comestibles/other.json @@ -73,6 +73,7 @@ "category": "food", "weight": "150 g", "color": "white", + "spoils_in": "2 d", "comestible_type": "FOOD", "symbol": "%", "healthy": 1, @@ -84,6 +85,26 @@ "flags": [ "EDIBLE_FROZEN", "NUTRIENT_OVERRIDE" ], "fun": -5 }, + { + "type": "COMESTIBLE", + "id": "dry_royal_jelly", + "name": { "str": "dehydrated royal jelly", "str_pl": "dehydrated royal jellies" }, + "category": "food", + "weight": "150 g", + "color": "white", + "spoils_in": "90 d", + "quench": -3, + "comestible_type": "FOOD", + "symbol": "%", + "healthy": 1, + "calories": 240, + "description": "This dense, milky, bitter and acidic-tasting jelly has been dried and processed to increase it's shelf-life. It is still rich and beneficial, if a little more powder-like.", + "price": 20000, + "price_postapoc": 4000, + "volume": "125 ml", + "flags": [ "EDIBLE_FROZEN", "NUTRIENT_OVERRIDE" ], + "fun": -6 + }, { "type": "COMESTIBLE", "id": "marloss_berry", diff --git a/data/json/items/tool/cooking.json b/data/json/items/tool/cooking.json index a3aa05e6f0818..642d9bc183fc1 100644 --- a/data/json/items/tool/cooking.json +++ b/data/json/items/tool/cooking.json @@ -278,6 +278,33 @@ } ] }, + { + "id": "freeze_dryer", + "type": "TOOL", + "name": { "str": "freeze dryer" }, + "description": "This is an electric freeze dryer. It's got a battery compartment for use when the power goes out and requires a vacuum pump to work properly. It's capable of preserving food for a very long time.", + "weight": "27669 g", + "volume": "125 L", + "price": 6000, + "price_postapoc": 2000, + "to_hit": -2, + "bashing": 8, + "material": [ "plastic" ], + "symbol": ";", + "color": "blue", + "ammo": [ "battery" ], + "flags": [ "ALLOWS_REMOTE_USE" ], + "pocket_data": [ + { + "pocket_type": "MAGAZINE_WELL", + "rigid": true, + "holster": true, + "max_contains_volume": "20 L", + "max_contains_weight": "20 kg", + "item_restriction": [ "medium_battery_cell", "medium_plus_battery_cell", "medium_atomic_battery_cell", "medium_disposable_cell" ] + } + ] + }, { "id": "eggs_ferment", "type": "GENERIC", diff --git a/data/json/recipes/food/dry.json b/data/json/recipes/food/dry.json index 0f80eedb9c6a3..b21ad129ef1ef 100644 --- a/data/json/recipes/food/dry.json +++ b/data/json/recipes/food/dry.json @@ -370,5 +370,32 @@ "batch_time_factors": [ 67, 5 ], "tools": [ [ [ "dehydrator", 25 ], [ "char_smoker", 25 ] ], [ [ "surface_heat", 5, "LIST" ] ] ], "components": [ [ [ "raw_lentils", 1 ] ] ] + }, + { + "type": "recipe", + "result": "dry_royal_jelly", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_DRY", + "skill_used": "cooking", + "difficulty": 2, + "time": "18 m", + "autolearn": true, + "batch_time_factors": [ 67, 5 ], + "tools": [ [ [ "dehydrator", 25 ], [ "char_smoker", 25 ] ] ], + "components": [ [ [ "royal_jelly", 1 ] ] ] + }, + { + "type": "recipe", + "result": "dry_royal_jelly", + "category": "CC_FOOD", + "id_suffix": "frozen_ingredients", + "subcategory": "CSC_FOOD_DRY", + "skill_used": "cooking", + "difficulty": 2, + "time": "20 m", + "autolearn": true, + "batch_time_factors": [ 67, 5 ], + "tools": [ [ [ "dehydrator", 25 ], [ "char_smoker", 25 ] ], [ [ "surface_heat", 5, "LIST" ] ] ], + "components": [ [ [ "royal_jelly", 1 ] ] ] } ]