
[Suggestion] Add Filling Recipe to create Rich Soil from Dirt and Fertilizer fluid
fabien-gigante opened this issue ยท 1 comments
Describe the feature you have in mind.
I believe it would be a nice to have a Filling Recipe to create Rich Soil from Dirt and Fertilizer fluid. I suggest a fluid quantity of 500mB.

Does this solve a particular problem?
- well aligned with the mod motto "Making automation for Farmers Delight more sensible"
- provide better automation for Rich Soil production
- provide an additional use for the Fertilizer fluid
- suggested quantity of 500mB
- means a bottom line of 2 Organic Compost for 1 Rich Soil
- keeps some balance vs the manual Fermenting process (slow but more economical in resources)
- is consistent with the Dirt to Grass Filling Recipe of Create mod
Proposed implementation
data\sliceanddice\recipe\filling\rich_soil_from_fertilizer.json
:
{
"type": "create:filling",
"ingredients": [
{
"item": "minecraft:dirt"
},
{
"type": "fluid_stack",
"amount": 500,
"fluid": "sliceanddice:fertilizer"
}
],
"results": [
{
"id": "farmersdelight:rich_soil"
}
],
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "farmersdelight"
}
]
}