Module:Data/Organics/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 23: Line 23:
         },
         },
         ticks = 200,
         ticks = 200,
    },
    {
        name = 'Resistor2',
        machine = 'Assembler',
        input = {
            {'CoalDust', 1},
            {'Organics', 1},
            {'GoldWire', 1},
        },
        output = {
            {'Resistor', 2},
        },
        ticks = 60,
        tier = 2,
    },
    {
        name = 'Resistor',
        machine = 'Hand',
        input = {
            {'CoalDust', 1},
            {'Organics', 1},
            {'CopperWire', 1},
        },
        output = {
            {'Resistor', 1},
        },
        ticks = 60,
        tier = 1,
     },
     },
     {
     {

Latest revision as of 21:15, 27 January 2026

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,
    },
}