Module:Data/CarbonFiberSheet/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'CircuitBoard3', input = { {'CarbonFiberSheet', 1}, {'PolyethyleneSheet', 2}, }, output = { {'CircuitBoard', 8}, }, ticks = 20, tier = 5, }, { name = 'Resistor5', input = { {'TantalumWire', 1}, {'CarbonFiberSheet', 1}, {'PolyethyleneSheet', 1}, }, output = { {'Resistor', 1..."
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
     {
     {
         name = 'CircuitBoard3',
         name = 'CircuitBoard3',
        machine = 'Assembler',
         input = {
         input = {
             {'CarbonFiberSheet', 1},
             {'CarbonFiberSheet', 1},
Line 14: Line 15:
     {
     {
         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 27: Line 29:
     {
     {
         name = 'Capacitor4',
         name = 'Capacitor4',
        machine = 'Assembler',
         input = {
         input = {
             {'TantalumFoil', 2},
             {'TantalumFoil', 3},
             {'CarbonFiberSheet', 1},
             {'CarbonFiberSheet', 2},
            {'PolyethyleneSheet', 1},
         },
         },
         output = {
         output = {
             {'Capacitor', 8},
             {'Capacitor', 16},
         },
         },
         ticks = 60,
         ticks = 60,
Line 40: Line 42:
     {
     {
         name = 'CompositePlate',
         name = 'CompositePlate',
        machine = 'Assembler',
         input = {
         input = {
             {'TitaniumPlate', 1},
             {'TitaniumPlate', 1},
Line 53: Line 56:
     {
     {
         name = 'CompositePlate2',
         name = 'CompositePlate2',
        machine = 'Assembler',
         input = {
         input = {
             {'TitaniumPlate', 1},
             {'TitaniumPlate', 1},
             {'CarbonFiberSheet', 1},
             {'CarbonFiberSheet', 1},
             {'PolyethyleneSheet', 1},
             {'PolyethyleneSheet', 1},
             {'NeutroniumParts', 1},
             {'NeutroniumPlate', 1},
         },
         },
         output = {
         output = {
Line 67: Line 71:
     {
     {
         name = 'BrainMatrix',
         name = 'BrainMatrix',
        machine = 'Hand',
         input = {
         input = {
             {'CarbonFiberSheet', 1},
             {'CarbonFiberSheet', 1},

Latest revision as of 21:16, 27 January 2026

Documentation for this module may be created at Module:Data/CarbonFiberSheet/InInput/doc

return {
    {
        name = 'CircuitBoard3',
        machine = 'Assembler',
        input = {
            {'CarbonFiberSheet', 1},
            {'PolyethyleneSheet', 2},
        },
        output = {
            {'CircuitBoard', 8},
        },
        ticks = 20,
        tier = 5,
    },
    {
        name = 'Resistor5',
        machine = 'Assembler',
        input = {
            {'CopperWire', 6},
            {'TantalumWire', 1},
            {'CarbonFiberSheet', 1},
        },
        output = {
            {'Resistor', 8},
        },
        ticks = 60,
        tier = 5,
    },
    {
        name = 'Capacitor4',
        machine = 'Assembler',
        input = {
            {'TantalumFoil', 3},
            {'CarbonFiberSheet', 2},
        },
        output = {
            {'Capacitor', 16},
        },
        ticks = 60,
        tier = 5,
    },
    {
        name = 'CompositePlate',
        machine = 'Assembler',
        input = {
            {'TitaniumPlate', 1},
            {'CarbonFiberSheet', 1},
            {'PolyethyleneSheet', 1},
        },
        output = {
            {'CompositePlate', 1},
        },
        ticks = 300,
        tier = 6,
    },
    {
        name = 'CompositePlate2',
        machine = 'Assembler',
        input = {
            {'TitaniumPlate', 1},
            {'CarbonFiberSheet', 1},
            {'PolyethyleneSheet', 1},
            {'NeutroniumPlate', 1},
        },
        output = {
            {'CompositePlate', 4},
        },
        ticks = 300,
        tier = 7,
    },
    {
        name = 'BrainMatrix',
        machine = 'Hand',
        input = {
            {'CarbonFiberSheet', 1},
            {'PlatinumFoil', 1},
        },
        output = {
            {'BrainMatrix', 1},
        },
        ticks = 100,
        tier = 6,
    },
}