Is it possible to make a fruit jelly that can be sealed in a small jar? It’s strange that the only fruit spread available is in a three-liter jar and can only be found, not made.
Seems easy enough but looking at comestibles.json and recipe_food.json in Notepad is overwhelming.
This is what I tried for jelly, jam, and preserves:
[spoiler][tt]{
“type” : “COMESTIBLE”,
“id” : “jelly_fruit”,
“name” : “fruit jelly”,
“weight” : 250,
“color” : “red”,
“spoils_in” : 240,
“container” : “jar_glass”,
“comestible_type” : “FOOD”,
“symbol” : “~”,
“nutrition” : 10,
“description” : “A fruity gel made from reducing fruit juice with sugar and straining to remove particles.”,
“price” : 80,
“material” : “fruit”,
“volume” : 1,
“phase” : “liquid”,
“charges” : 4,
“fun” : 10,
“flags” : [“USE_EAT_VERB”]
}
{
“type” : “COMESTIBLE”,
“id” : “jam_fruit”,
“name” : “fruit jam”,
“weight” : 250,
“color” : “red”,
“spoils_in” : 240,
“container” : “jar_glass”,
“comestible_type” : “FOOD”,
“symbol” : “~”,
“nutrition” : 10,
“description” : “Fresh fruits cooked with sugar to make them last longer.”,
“price” : 80,
“material” : “fruit”,
“volume” : 1,
“phase” : “liquid”,
“charges” : 4,
“fun” : 10,
“flags” : [“USE_EAT_VERB”]
}
{
“type” : “COMESTIBLE”,
“id” : “preserve_fruit”,
“name” : “fruit preserves”,
“weight” : 250,
“color” : “red”,
“spoils_in” : 240,
“container” : “jar_glass”,
“comestible_type” : “FOOD”,
“symbol” : “~”,
“nutrition” : 10,
“description” : “Chunks of fruit suspended in jelly. Delicious on biscuits.”,
“price” : 80,
“material” : “fruit”,
“volume” : 1,
“phase” : “liquid”,
“charges” : 4,
“fun” : 14,
“flags” : [“USE_EAT_VERB”]
}[/tt][/spoiler]
And this is my attempt at a recipe for a jar of fruit jelly:
[tt]{
“type” : “recipe”,
“result”: “fruit jelly”,
“id_suffix” : “jarred”,
“container”: “jar_glass_sealed”,
“category”: “CC_FOOD”,
“subcategory”: “CSC_FOOD_DRINKS”,
“skill_used”: “cooking”,
“skills_required”: [“mechanics”,1],
“difficulty”: 3,
“time”: 30000,
“autolearn”: true,
“batch_time_factors”:[80, 4],
“qualities”:[
{“id”:“COOK”,“level”:3}
], “tools”: [
[
[ “hotplate”, 2 ],
[ “char_smoker”, 2 ],
[ “toolset”, 2 ],
[ “fire”, -1 ]
],
[
[ “vac_sealer”, 10 ],
[ “makeshift_sealer”, 20 ]
]
],
“components”: [
[
[ “jar_glass”, 1 ]
[ “rag”, 1 ]
[ “juice_fruit”, 4 ]],
[
[“apple”, 2],
[“apple_canned”, 2],
[“apple_vac”, 2],
[“apricot”, 2],
[“blackberries”, 4],
[“blueberries”, 4],
[“cherries”, 4],
[“cranberries”, 8],
[“dry_fruit”, 4 ],
[“grapefruit”, 2],
[“grapes”, 8],
[“irradiated_apple”, 2],
[“irradiated_apricot”, 2],
[“irradiated_blackberries”, 4],
[“irradiated_blueberries”, 4],
[“irradiated_cherries”, 4],
[“irradiated_cranberries”, 8],
[“irradiated_grapefruit”, 2],
[“irradiated_grapes”, 8],
[“irradiated_kiwi”, 2],
[“irradiated_lemon”, 2],
[“irradiated_mango”, 2],
[“irradiated_melon”, 4],
[“irradiated_orange”, 2],
[“irradiated_papaya”, 2],
[“irradiated_peach”, 2],
[“irradiated_pear”, 2],
[“irradiated_pineapple”, 2],
[“irradiated_plums”, 2],
[“irradiated_pomegranate”, 2],
[“irradiated_raspberries”, 4],
[“irradiated_rhubarb”, 4],
[“irradiated_strawberries”, 4],
[“irradiated_watermelon”, 2],
[“kiwi”, 2],
[“lemon”, 2],
[“mango”, 2],
[“melon”, 4],
[“orange”, 2],
[“papaya”, 2],
[“peach”, 2],
[“pear”, 2],
[“pineapple”, 2],
[“plums”, 2],
[“pomegranate”, 2],
[“raspberries”, 4],
[“rhubarb”, 4],
[“strawberries”, 4],
[“watermelon”, 2]
],
[
[ “sugar”, 4 ]
],
[
[“water”, 6],
[“water_clean”, 6]
]
]
}[/tt]
Basically what I want to do is a separate entry for jelly (fruit juice and sugar strained through a rag, no fruit bits) preserves (fruit chunks suspended in jelly) and jam (chopped/crushed fruit and sugar) as well as a way to preserve them in jars. Am I on the right track? If this works, I’d like to try adding more recipes for foods without many recipes like hickory nuts.