Module:Data/Resistor/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 5: Line 5:
         input = {
         input = {
             {'CoalDust', 1},
             {'CoalDust', 1},
             {'Organics', 1},
             {'CopperWire', 3},
            {'GoldWire', 1},
         },
         },
         output = {
         output = {
             {'Resistor', 2},
             {'Resistor', 1},
         },
         },
         ticks = 60,
         ticks = 60,
Line 18: Line 17:
         machine = 'Assembler',
         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 31: Line 31:
         machine = 'Assembler',
         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 44: Line 45:
         machine = 'Assembler',
         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 59: Line 60:
         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,
    },
}