Module:Data/Organics/InInput

From Evospace
Revision as of 20:06, 31 July 2025 by Evospace (talk | contribs) (Created page with "return { { name = 'OrgToCoal', input = { {'Organics', 10}, }, output = { {'Coal', 2}, {'Creosote', 100}, }, ticks = 240, }, { name = 'Organics', input = { {'Organics', 1}, {'Water', 500}, }, output = { {'Biomass', 500}, }, ticks = 200, }, { name = 'Resistor2', input = {...")
(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',
        input = {
            {'Organics', 10},
        },
        output = {
            {'Coal', 2},
            {'Creosote', 100},
        },
        ticks = 240,
    },
    {
        name = 'Organics',
        input = {
            {'Organics', 1},
            {'Water', 500},
        },
        output = {
            {'Biomass', 500},
        },
        ticks = 200,
    },
    {
        name = 'Resistor2',
        input = {
            {'CoalDust', 1},
            {'Organics', 1},
            {'GoldWire', 1},
        },
        output = {
            {'Resistor', 2},
        },
        ticks = 60,
        tier = 2,
    },
    {
        name = 'Resistor',
        input = {
            {'CoalDust', 1},
            {'Organics', 1},
            {'CopperWire', 1},
        },
        output = {
            {'Resistor', 1},
        },
        ticks = 60,
        tier = 1,
    },
    {
        name = 'Dirt',
        input = {
            {'SandSurface', 1},
            {'Organics', 1},
        },
        output = {
            {'DirtSurface', 1},
        },
        ticks = 200,
    },
    {
        name = 'Organics',
        input = {
            {'Organics', 1},
        },
        output = {
        },
        ticks = 60.0,
    },
}