A place for us to share our creations and ideas! I’m pretty sure I’m not the only one thinking about seeing new recipes and items in the game so I made this place to discuss and post the resulting code for all to use.
I’ll start with some of the stuff I’ve added into the files:
Wasteland Bread: Slightly weaker than bread and you’ll get 2 instead of 4.
Comestibles.json
{
"type" : "COMESTIBLE",
"id" : "bonebread",
"name" : "wasteland bread",
"weight" : 57,
"color" : "brown",
"addiction_type" : "none",
"spoils_in" : 250,
"use_action" : "NONE",
"stim" : 0,
"container" : "bag_plastic",
"to_hit" : 0,
"comestible_type" : "FOOD",
"symbol" : "%",
"quench" : 0,
"heal" : 1,
"addiction_potential" : 0,
"nutrition" : 19,
"description" : "It's filling. That's what matters.",
"price" : 45,
"material" : "veggy",
"tool" : "null",
"volume" : 4,
"cutting" : 0,
"phase" : "solid",
"charges" : 2,
"bashing" : 0,
"flags" : ["EATEN_HOT"],
"fun" : 1
},
Recipes.json
{
"result": "bonebread",
"category": "CC_FOOD",
"skill_used": "cooking",
"requires_skills": [ "survival", 1 ],
"difficulty": 2,
"time": 15000,
"reversible": false,
"autolearn": true,
"tools": [
[
[ "hotplate", 8 ],
[ "toolset", 1 ],
[ "fire", -1 ]
],
[
[ "pot", -1 ],
[ "rock_pot", -1 ]
]
],
"components": [
[
[ "flour", 1 ]
],
[
[ "meal_bone", 1 ]
],
[
[ "water", 1 ],
[ "water_clean", 1 ]
]
]
},
Rumcola: Kinda similar to Screwdriver and Wild apple stat-wise. it has more charges, though.
Comestibles.json
{
"type" : "COMESTIBLE",
"id" : "drink_rumcola",
"name" : "rumcola",
"weight" : 250,
"color" : "brown",
"addiction_type" : "alcohol",
"spoils_in" : 0,
"use_action" : "ALCOHOL",
"stim" : -10,
"container" : "bottle_glass",
"to_hit" : 0,
"comestible_type" : "DRINK",
"symbol" : "~",
"quench" : 25,
"heal" : 1,
"addiction_potential" : 4,
"nutrition" : 5,
"description" : "Rum and cola. For those who can't drink rum straight.",
"price" : 100,
"material" : "null",
"tool" : "null",
"volume" : 2,
"cutting" : 0,
"phase" : "liquid",
"charges" : 2,
"bashing" : 0,
"fun" : 20
},
Recipes.json
{
"result": "drink_rumcola",
"category": "CC_DRINK",
"skill_used": "cooking",
"difficulty": 1,
"time": 7000,
"reversible": false,
"autolearn": true,
"components": [
[
[ "cola", 1 ]
],
[
[ "rum", 1 ]
]
]
},
Fancy Hobo: A drink made using 3 ingredients. It has more charges than the vanilla cocktails.
Comestibles.json
{
"type" : "COMESTIBLE",
"id" : "drink_hobo",
"name" : "fancy hobo",
"weight" : 248,
"color" : "brown",
"addiction_type" : "alcohol",
"spoils_in" : 0,
"use_action" : "ALCOHOL",
"stim" : -15,
"container" : "bottle_glass",
"to_hit" : 0,
"comestible_type" : "DRINK",
"symbol" : "~",
"quench" : 25,
"heal" : 1,
"addiction_potential" : 5,
"nutrition" : 6,
"description" : "This definetely taste like a hobo drink.",
"price" : 100,
"material" : "null",
"tool" : "null",
"volume" : 2,
"cutting" : 0,
"phase" : "liquid",
"charges" : 3,
"bashing" : 0,
"fun" : 15
},
Recipes.json
{
"result": "drink_hobo",
"category": "CC_DRINK",
"skill_used": "cooking",
"requires_skills": [ "survival", 1 ],
"difficulty": 0,
"time": 8000,
"reversible": false,
"autolearn": true,
"components": [
[
[ "cola", 1 ],
[ "oj", 1 ],
[ "apple_cider", 1 ]
],
[
[ "beer", 1 ],
[ "rootbeer", 1 ]
],
[
[ "whiskey", 1 ],
[ "vodka", 1 ],
[ "rum", 1 ],
[ "gin", 1 ]
]
]
},
Sewer Brew: This is like the drink you start to make when you are addicted to alcohol, don’t want to die of thrist by drinking straight and don’t have proper ingredients for a better recipe.
Comestibles.json
{
"type" : "COMESTIBLE",
"id" : "drink_sewerbrew",
"name" : "sewer brew",
"weight" : 250,
"color" : "yellow",
"addiction_type" : "alcohol",
"spoils_in" : 0,
"use_action" : "ALCOHOL",
"stim" : -14,
"container" : "bottle_glass",
"to_hit" : 0,
"comestible_type" : "DRINK",
"symbol" : "~",
"quench" : 25,
"heal" : -10,
"addiction_potential" : 5,
"nutrition" : 2,
"description" : "A thirsty mutant's drink of choice. It tastes horrible but it's probably a lot safer to drink than before.",
"price" : 70,
"material" : "null",
"tool" : "null",
"volume" : 2,
"cutting" : 0,
"phase" : "liquid",
"charges" : 1,
"bashing" : 0,
"fun" : -15
},
Recipes.json
{
"result": "drink_sewerbrew",
"category": "CC_DRINK",
"skill_used": "cooking",
"requires_skills": [ "survival", 1 ],
"difficulty": 5,
"time": 7000,
"reversible": false,
"autolearn": true,
"tools":[ [ ["still", -1] ],
[ ["fire", -1] ] ],
"components": [
[
[ "sewage", 1 ]
],
[
[ "whiskey", 1 ],
[ "vodka", 1 ],
[ "rum", 1 ],
[ "tequila", 1 ],
[ "gin", 1 ],
[ "triple_sec", 1 ]
]
]
},
Sewagas: An inhaler based drug. It’s pretty much the shittiest recreational drug at your disposal. The pun is intended.
Comestibles.json
{
"type" : "COMESTIBLE",
"id" : "inhaler_sewergas",
"name" : "sewagas",
"weight" : 10,
"color" : "light_blue",
"addiction_type" : "none",
"spoils_in" : 0,
"use_action" : "HALLU",
"stim" : -12,
"container" : "null",
"to_hit" : 0,
"comestible_type" : "MED",
"symbol" : "!",
"quench" : 0,
"heal" : -14,
"addiction_potential" : 0,
"nutrition" : 0,
"description" : "Sewer Gas inhaler. A powerful hallucinogen with no chances to get addictive.",
"price" : 500,
"material" : "plastic",
"tool" : "null",
"volume" : 1,
"cutting" : 0,
"phase" : "solid",
"charges" : 25,
"bashing" : 0,
"fun" : 24
},
Recipes.json
{
"result": "inhaler_sewergas",
"category": "CC_CHEM",
"skill_used": "cooking",
"requires_skills": [ "survival", 1 ],
"difficulty": 7,
"time": 30000,
"reversible": false,
"autolearn": true,
"tools": [
[
[ "chemistry_set", -1 ]
],
[
[ "fire", -1 ],
[ "toolset", 1 ],
[ "hotplate", 10 ]
]
],
"components": [
[
[ "sewage", 1 ]
],
[
[ "bleach", 1 ]
],
[
[ "inhaler", 200 ]
]
]
},