Module:Data/Resistor/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'Resistor2', input = { {'CoalDust', 1}, {'Organics', 1}, {'GoldWire', 1}, }, output = { {'Resistor', 2}, }, ticks = 60, tier = 2, }, { name = 'Resistor3', input = { {'GoldWire', 1}, {'PolyethyleneSheet', 1}, }, output = { {'Resistor', 4}, }, ticks = 60,..."
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
     {
     {
         name = 'Resistor2',
         name = 'Resistor2',
        machine = 'Assembler',
         input = {
         input = {
             {'CoalDust', 1},
             {'CoalDust', 1},
             {'Organics', 1},
             {'CopperWire', 3},
            {'GoldWire', 1},
         },
         },
         output = {
         output = {
             {'Resistor', 2},
             {'Resistor', 1},
         },
         },
         ticks = 60,
         ticks = 60,
Line 15: Line 15:
     {
     {
         name = 'Resistor3',
         name = 'Resistor3',
        machine = 'Assembler',
         input = {
         input = {
             {'GoldWire', 1},
             {'CopperWire', 4},
            {'CoalDust', 1},
             {'PolyethyleneSheet', 1},
             {'PolyethyleneSheet', 1},
         },
         },
         output = {
         output = {
             {'Resistor', 4},
             {'Resistor', 2},
         },
         },
         ticks = 60,
         ticks = 60,
Line 27: Line 29:
     {
     {
         name = 'Resistor4',
         name = 'Resistor4',
        machine = 'Assembler',
         input = {
         input = {
            {'CopperWire', 4},
             {'TantalumWire', 1},
             {'TantalumWire', 1},
             {'PolyethyleneSheet', 1},
             {'PolyethyleneSheet', 1},
         },
         },
         output = {
         output = {
             {'Resistor', 8},
             {'Resistor', 4},
         },
         },
         ticks = 60,
         ticks = 60,
Line 39: Line 43:
     {
     {
         name = 'Resistor5',
         name = 'Resistor5',
        machine = 'Assembler',
         input = {
         input = {
            {'CopperWire', 6},
             {'TantalumWire', 1},
             {'TantalumWire', 1},
             {'CarbonFiberSheet', 1},
             {'CarbonFiberSheet', 1},
            {'PolyethyleneSheet', 1},
         },
         },
         output = {
         output = {
             {'Resistor', 16},
             {'Resistor', 8},
         },
         },
         ticks = 60,
         ticks = 60,
Line 52: Line 57:
     {
     {
         name = 'Resistor',
         name = 'Resistor',
        machine = 'Hand',
         input = {
         input = {
             {'CoalDust', 1},
             {'CoalDust', 1},
            {'Organics', 1},
             {'CopperWire', 4},
             {'CopperWire', 1},
         },
         },
         output = {
         output = {

Latest revision as of 21:21, 27 January 2026

Documentation for this module may be created at Module:Data/Resistor/InOutput/doc

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