change the recipes: Both Ingredients and Results
Posted: Thu Mar 13, 2014 1:07 pm
currently the recipes are made like this:
but since you can heat the fluids, i was thinking (and hoping you would add it, since i could use it
)
to add temperature to the recipes, so you can specify the temperature range. something like:
these recipes are just examples, i have no intention to heat water through recipes, it can already be done with boilers.
i want to use it for the lava system i am adding, and then i could specify the heat of the lava needed for the smelting of the ores
Code: Select all
ingredients =
{
{type="fluid", name="crude-oil", amount=10},
{type="fluid", name="water", amount=5}
},
results=
{
{type="fluid", name="heavy-oil", amount=1},
{type="fluid", name="light-oil", amount=4.5},
{type="fluid", name="petroleum-gas", amount=5.5}
},

to add temperature to the recipes, so you can specify the temperature range. something like:
Code: Select all
heating water through recipe:
this is the specific recipe, which will always add the temperature set
ingredients =
{
{type="fluid", name="water", temp_min=10, temp_max=50, amount=5}
},
results=
{
{type="fluid", name="water", temp=75, amount=5}
},
the recipe which has a random result in temperature:
ingredients =
{
{type="fluid", name="water", temp_min=10, temp_max=50, amount=5}
},
results=
{
{type="fluid", name="water", temp_min=60, temp_max=80, amount=5}
},
i want to use it for the lava system i am adding, and then i could specify the heat of the lava needed for the smelting of the ores