so im really new to coding but i wanted to add posca, as a simple entry level excrise how does it look
(item json)
{
“type”: “COMESTIBLE”,
“id”: “posca”,
“looks_like”: “cola”,
“name”: { “str_sp”: “posca” },
“weight”: “260 g”,
“color”: “biege”,
“container”: “can_drink”,
“comestible_type”: “DRINK”,
“symbol”: “~”,
“quench”: 35,
“healthy”: -1,
“description”: “Posca, a mix of vinegar and water. safe to drink doesnt taste the best.”,
“price”: 95,
“price_postapoc”: 50,
“material”: [ “junk” ],
“primary_material”: “water”,
“volume”: “250 ml”,
“phase”: “liquid”,
“flags”: [ “EATEN_COLD” ],
“fun”: -5
},
{
“type”: “COMESTIBLE”,
“id”: “sweet_posca”,
“looks_like”: “cola”,
“name”: { “str_sp”: “posca” },
“weight”: “260 g”,
“color”: “biege”,
“container”: “can_drink”,
“comestible_type”: “DRINK”,
“symbol”: “~”,
“quench”: 35,
“healthy”: -1,
“description”: “Posca, a mix of vinegar and water and sugar. safe to drink sugar makes the taste barable.”,
“price”: 95,
“price_postapoc”: 50,
“material”: [ “junk” ],
“primary_material”: “water”,
“volume”: “250 ml”,
“phase”: “liquid”,
“flags”: [ “EATEN_COLD” ],
“fun”: 0
},
(item recipe i dont know how to implement or yet so i just used honey)
{
“type”: “recipe”,
“result”: “posca”,
“result_mult”: 4,
“id_suffix”: “from_water”,
“category”: “CC_FOOD”,
“subcategory”: “CSC_FOOD_DRINKS”,
“skill_used”: “cooking”,
“skills_required”: [ “survival”, 2 ],
“difficulty”: 0,
“time”: “30 seconds”,
“autolearn”: true,
“batch_time_factors”: [ 80, 4 ],
“components”: [ [ [ “water”, 3 ], [ “vinegar”, 1 ] ] ]
},
{
“type”: “recipe”,
“result”: “sweet_posca”,
“result_mult”: 4,
“id_suffix”: “from_water”,
“category”: “CC_FOOD”,
“subcategory”: “CSC_FOOD_DRINKS”,
“skill_used”: “cooking”,
“skills_required”: [ “survival”, 2 ],
“difficulty”: 0,
“time”: “30 seconds”,
“autolearn”: true,
“batch_time_factors”: [ 80, 4 ],
“components”: [ [ [ “water”, 3 ], [ “honey”, 1 ], [ “vinegar”, 1 ] ] ]
}
},