Module:Data/Organics/InInput

From Evospace
Revision as of 21:15, 27 January 2026 by Evospace (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Data/Organics/InInput/doc

return {
    {
        name = 'OrgToCoal',
        machine = 'Oven',
        input = {
            {'Organics', 10},
        },
        output = {
            {'Coal', 2},
            {'Creosote', 100},
        },
        ticks = 240,
    },
    {
        name = 'Organics',
        machine = 'Mixer',
        input = {
            {'Organics', 1},
            {'Water', 500},
        },
        output = {
            {'Biomass', 500},
        },
        ticks = 200,
    },
    {
        name = 'Dirt',
        machine = 'Hand',
        input = {
            {'SandSurface', 1},
            {'Organics', 1},
        },
        output = {
            {'DirtSurface', 1},
        },
        ticks = 200,
    },
    {
        name = 'Organics',
        machine = 'Furnace',
        input = {
            {'Organics', 1},
        },
        output = {
        },
        ticks = 60.0,
    },
}