Skip to content

Commit

Permalink
# If this commit is applied, it will ....
Browse files Browse the repository at this point in the history
# |<-- Using around 50, Maximum 72 Characters -->|
Adds freeze dryer. Adds dehydrated royal jelly. Spoilage for Royal Jelly
# Explain why this change is being made
# |<----      Limit Each Line to a Maximum Of 72 Characters       ---->|
Works toward resolving CleverRaven#41361
# Provide links or keys to any relevant tickets, articles or other resources
# Example: fixes CleverRaven#1234, closes CleverRaven#2345, resolves CleverRaven#3456, references CleverRaven#4567
  • Loading branch information
Kiktamo committed Jul 11, 2020
1 parent ab2e206 commit bdecc23
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 0 deletions.
21 changes: 21 additions & 0 deletions data/json/items/comestibles/other.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
"category": "food",
"weight": "150 g",
"color": "white",
"spoils_in": "2 d",
"comestible_type": "FOOD",
"symbol": "%",
"healthy": 1,
Expand All @@ -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",
Expand Down
27 changes: 27 additions & 0 deletions data/json/items/tool/cooking.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
27 changes: 27 additions & 0 deletions data/json/recipes/food/dry.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 ] ] ]
}
]

0 comments on commit bdecc23

Please sign in to comment.