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

Make butchery refuse useful #72828

Closed
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions data/json/items/chemicals_and_resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,24 @@
"category": "chems",
"fun": -30
},
{
"type": "COMESTIBLE",
"id": "fermenting_fertilizer_liquid",
"name": {"str_sp": "fermenting fertilizer liquid"},
Rocket-F-1024 marked this conversation as resolved.
Show resolved Hide resolved
"description": "A mixture of various organic wastes and water. It will ferment into liquid fertilizer in about two weeks.",
"copy-from": "fertilizer_liquid",
"price": 0,
"price_postapoc": 0,
"flags": [ "NUTRIENT_OVERRIDE", "TRADER_AVOID" ],
"use_action": {
"target": "fertilizer_liquid",
"msg": "The mixture has fermented and is ready to be used for fertilizer.",
"moves": 50,
"type": "delayed_transform",
"transform_age": 1209600,
"not_ready_msg": "The mixture is still fermenting."
}
},
{
"type": "COMESTIBLE",
"id": "fertilizer_commercial",
Expand Down
21 changes: 11 additions & 10 deletions data/json/recipes/recipe_medsandchemicals.json
Original file line number Diff line number Diff line change
Expand Up @@ -823,25 +823,26 @@
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
"result": "fertilizer_liquid",
"result": "fermenting_fertilizer_liquid",
"id_suffix": "simple",
"category": "CC_CHEM",
"subcategory": "CSC_CHEM_CHEMICALS",
"skill_used": "survival",
"difficulty": 2,
"time": "20 m",
"time": "1 m",
"charges": 2,
"autolearn": true,
"//": "Too simple. Just mixing feces and chitin with water. Basic chemistry shall be enough for this.",
"proficiencies": [ { "proficiency": "prof_intro_chemistry" } ],
"batch_time_factors": [ 80, 4 ],
"flags": [ "BLIND_HARD", "ALLOW_ROTTEN" ],
"qualities": [ { "id": "BOIL", "level": 1 } ],
"tools": [ [ [ "surface_heat", 10, "LIST" ] ] ],
"flags": [ "BLIND_EASY", "ALLOW_ROTTEN" ],
"components": [
[ [ "water", 4 ], [ "water_clean", 4 ] ],
[ [ "meal_bone", 2 ], [ "meal_bone_tainted", 4 ] ],
[ [ "meal_chitin_piece", 1 ] ],
[ [ "feces_bird", 10 ], [ "feces_roach", 10 ], [ "feces_cow", 4 ], [ "feces_manure", 6 ] ]
[ [ "water", 2 ], [ "water_clean", 2 ] ]
],
"using": [
[
"organic_waste",
1
]
]
Rocket-F-1024 marked this conversation as resolved.
Show resolved Hide resolved
},
{
Expand Down
15 changes: 15 additions & 0 deletions data/json/requirements/materials.json
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,21 @@
[ [ "pebble", 10 ], [ "material_sand", 10 ] ]
]
},
{
"id": "organic_waste",
"type": "requirement",
"//": "Materials for use when composting",
"components": [
[
[ "feces_roach", 18 ],
[ "feces_bird", 18 ],
[ "feces_manure", 3 ],
[ "feces_dog", 3 ],
[ "ruined_chunks", 3 ],
[ "feces_cow", 1 ]
]
]
},
{
"id": "carbon",
"type": "requirement",
Expand Down
Loading