Module:Data/Resistor/InOutput

From Evospace
Revision as of 10:36, 30 October 2025 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/Resistor/InOutput/doc

return {
    {
        name = 'Resistor2',
        machine = 'Assembler',
        input = {
            {'CoalDust', 1},
            {'Organics', 1},
            {'GoldWire', 1},
        },
        output = {
            {'Resistor', 2},
        },
        ticks = 60,
        tier = 2,
    },
    {
        name = 'Resistor3',
        machine = 'Assembler',
        input = {
            {'GoldWire', 1},
            {'PolyethyleneSheet', 1},
        },
        output = {
            {'Resistor', 4},
        },
        ticks = 60,
        tier = 3,
    },
    {
        name = 'Resistor4',
        machine = 'Assembler',
        input = {
            {'TantalumWire', 1},
            {'PolyethyleneSheet', 1},
        },
        output = {
            {'Resistor', 8},
        },
        ticks = 60,
        tier = 5,
    },
    {
        name = 'Resistor5',
        machine = 'Assembler',
        input = {
            {'TantalumWire', 1},
            {'CarbonFiberSheet', 1},
            {'PolyethyleneSheet', 1},
        },
        output = {
            {'Resistor', 16},
        },
        ticks = 60,
        tier = 5,
    },
    {
        name = 'Resistor',
        machine = 'Hand',
        input = {
            {'CoalDust', 1},
            {'Organics', 1},
            {'CopperWire', 1},
        },
        output = {
            {'Resistor', 1},
        },
        ticks = 60,
        tier = 1,
    },
}