Hello!
Heres my unbalanced idea for a new recipe:
If we think that since the vanilla water+heavy oil -> light oil (cracking) recipe is somewhat similar to satisfactory's diluted fuel recipe,
it would be a neat to have an alternative to it in this mod as well.
So for example some amount, lets say 50 heavy oil combined with 2 water barrel could turn into 2 light oil barrel, and enable the usual container loop just about every satisfactory player knows.
On second thought something like 25 heavy oil + 1x water barrel (50) -> 1x light oil barrel (50) would be more balanced, which would achieve similar level of output increase as the alt does in satisfactory.
So probably something like this in lua: (might be wrong, I just copied and edited an existing alt recipe from data.lua)
table.insert(recipes, make_alt_recipe("light-oil-barrel", "diluted-packaged-oil",
{ {type = "fluid", name = "heavy-oil", amount = 25}, {type = "item", name = "water-barrel", amount = 1} },
{ {type = "item", name = "light-oil-barrel", amount = 1} },
2.0, "chemistry"))