MadClown01's Processing


- Sand sluicing for platinum, chrome, gold etc featuring original graphics - Uranium processing chain, in the style of Angel's Smelting - Phosphorus processing to fertilizer, (crafting base for phosphorus munitions) - Garden mutation from other types of gardens, using radioactive material - Mercury filtering from thermal water - Neurotoxin production - Catalytic electrolysis & air filtering to generate large amounts of oxygen, hydrogen and nitrogen -Osmium smelting -Depleted uranium smelting -Advanced Centrifuging

4 months ago
0.16 - 1.1
20.1K

b [Patched] Gardens have no building

3 years ago

Seed Extractor lacks Water input which the garden recipes require
Temperate swamp and desert garden recipes are all broken due to this

3 years ago

i will take a look at this, but the only ones that may be broken are the mutation recipes, the regular ones should not have been changed

3 years ago

thanks, for the time being i removed the liquid ingredients from the recipes(not smart enough to add liquid inputs to buildings), which fixed the problem for the short term.

3 years ago
(updated 3 years ago)

Works like a charm, i copied fluid connections from the liquifier:

data-final-fixes.lua

if mods["angelsbioprocessing"] then

    --------------------
    -- Seed extractor --
    --------------------
    -- adding water input for garden generation with water.

    data.raw["assembling-machine"]["seed-extractor"].fluid_boxes = {
        {
            base_area = 10,
            base_level = -1,
            pipe_connections = { { position = { 0, 2 }, type = "input" } },
            pipe_covers = pipecoverspictures(),
            production_type = "input"
        },
        {
            base_level = 1,
            pipe_connections = { { position = { 0, -2 } } },
            pipe_covers = pipecoverspictures(),
            production_type = "output"
        }
    }

    data.raw["assembling-machine"]["seed-extractor"].pipe_covers = pipecoverspictures()

end
3 years ago
(updated 3 years ago)

This mod adds recipes to make, e.g. temperate garden from just water + soil + fertilizer (temperate-garden-generation). These recipes are available at the start, but cannot be made in any machine. Debug tooltips hint towards seed extractor.
Please make them craftable without a manual fix as described above. Also please make these recipes only unlock after garden processing 1, 2, or introduce new tech for them as garden processing 3.

3 years ago

Patched for next release (will have these recipes in their "respective" farm plot groups)
they can be generated in the basic farm also

3 years ago

neat, thanks!