Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pickled eggs, recipe, and a jar of fermenting eggs #24149

Merged
merged 1 commit into from Jul 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 19 additions & 1 deletion data/json/items/comestibles.json
Expand Up @@ -7591,7 +7591,7 @@
"symbol": "%",
"quench": 5,
"nutrition": 25,
"description": "A pickled cucumber. Rather sour, but tastes good and basically lasts forever.",
"description": "A pickled cucumber. Rather sour, but tastes good and lasts for a long time.",
"price": 250,
"material": "veggy",
"volume": 1,
Expand Down Expand Up @@ -7639,6 +7639,24 @@
"fun": 5,
"rot_spawn": "GROUP_ROTTING_PLANT"
},
{
"type": "COMESTIBLE",
"id": "pickled_egg",
"name": "pickled egg",
"weight": 80,
"color": "white",
"spoils_in": 720,
"comestible_type": "FOOD",
"symbol": "%",
"quench": -1,
"nutrition": 38,
"description": "A pickled egg. Rather salty, but tastes good and lasts for a long time.",
"price": 95,
"material": "egg",
"volume": 1,
"fun": 2,
"rot_spawn": "GROUP_CARRION"
},
{
"type": "COMESTIBLE",
"id": "paper",
Expand Down
45 changes: 45 additions & 0 deletions data/json/items/tools.json
Expand Up @@ -2403,6 +2403,28 @@
"qualities": [ [ "CUT", 1 ], [ "DIG", 3 ], [ "BUTCHER", -8 ] ],
"flags": [ "DURABLE_MELEE", "NEEDS_UNFOLD", "BELT_CLIP" ]
},
{
"id": "eggs_ferment",
"type": "GENERIC",
"category": "food",
"name": "fermenting eggs jar",
"description": "This jar contains a batch of eggs in a pickling solution. You can seal up the jar once the process is completed.",
"weight": 52,
"volume": 1,
"price": 10,
"bashing": 8,
"material": [ "glass", "egg" ],
"symbol": "%",
"color": "white",
"use_action": {
"target": "jar_eggs_pickled",
"msg": "You examine the batch and see that the pickling soluction has done it's job, so you seal the jar up for storage.",
"moves": 50,
"type": "delayed_transform",
"transform_age": 33600,
"not_ready_msg": "The eggs are not done yet."
}
},
{
"id": "eink_tablet_pc",
"type": "TOOL",
Expand Down Expand Up @@ -3845,6 +3867,29 @@
"type": "transform"
}
},
{
"id": "jar_eggs_pickled",
"type": "GENERIC",
"category": "food",
"name": "sealed jar of eggs",
"name_plural": "sealed jars of eggs",
"description": "This is a sealed glass jar containing pickled eggs. Use to open and eat to enjoy.",
"weight": 1750,
"volume": 2,
"price": 650,
"bashing": 4,
"material": [ "glass", "veggy" ],
"symbol": "%",
"color": "green",
"use_action": {
"target": "pickle",
"msg": "You open the jar, exposing it to the atmosphere.",
"container": "jar_glass",
"target_charges": 6,
"menu_text": "Open jar",
"type": "transform"
}
},
{
"id": "katana",
"type": "TOOL",
Expand Down
31 changes: 31 additions & 0 deletions data/json/recipes/recipe_food.json
Expand Up @@ -7682,6 +7682,37 @@
["cucumber", 6]
]
]
},{
"type" : "recipe",
"result": "eggs_ferment",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_OTHER",
"skill_used": "cooking",
"difficulty": 5,
"time": 30000,
"autolearn": true,
"qualities" : [
{"id":"COOK","level":3}
], "tools": [ [ [ "surface_heat", 20, "LIST" ] ] ],
"components": [
[
[ "water", 1 ],
[ "water_clean", 1 ]
],
[
[ "vinegar", 1 ]
],
[
[ "saline", 5 ],
[ "salt", 10 ]
],
[
[ "jar_glass", 1 ]
],
[
["boiled_egg", 6]
]
]
},{
"type" : "recipe",
"result": "sauerkraut_onions",
Expand Down