Module:Data/Coal/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'SteelElectrolyzer', input = { {'SteelPlate', 3}, {'Coal', 2}, {'CopperConnector', 2}, }, output = { {'SteelElectrolyzer', 1}, }, ticks = 20, tier = 2, }, { name = 'AluminiumElectrolyzer', input = { {'AluminiumPlate', 3}, {'Coal', 2}, {'CopperConnector', 7}, }, output = {..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'SteelElectrolyzer',
         name = 'SteelElectrolyzer',
        machine = 'Hand',
         input = {
         input = {
             {'SteelPlate', 3},
             {'SteelPlate', 3},
Line 15: Line 16:
     {
     {
         name = 'AluminiumElectrolyzer',
         name = 'AluminiumElectrolyzer',
        machine = 'Hand',
         input = {
         input = {
             {'AluminiumPlate', 3},
             {'AluminiumPlate', 3},
Line 28: Line 30:
     {
     {
         name = 'StainlessSteelElectrolyzer',
         name = 'StainlessSteelElectrolyzer',
        machine = 'Hand',
         input = {
         input = {
             {'StainlessSteelPlate', 3},
             {'StainlessSteelPlate', 3},
Line 41: Line 44:
     {
     {
         name = 'TitaniumElectrolyzer',
         name = 'TitaniumElectrolyzer',
        machine = 'Hand',
         input = {
         input = {
             {'TitaniumPlate', 3},
             {'TitaniumPlate', 3},
Line 54: Line 58:
     {
     {
         name = 'CompositeElectrolyzer',
         name = 'CompositeElectrolyzer',
        machine = 'Hand',
         input = {
         input = {
             {'CompositePlate', 3},
             {'CompositePlate', 3},
Line 67: Line 72:
     {
     {
         name = 'NeutroniumElectrolyzer',
         name = 'NeutroniumElectrolyzer',
        machine = 'Hand',
         input = {
         input = {
             {'NeutroniumPlate', 3},
             {'NeutroniumPlate', 3},
Line 80: Line 86:
     {
     {
         name = 'CoalToCoke',
         name = 'CoalToCoke',
        machine = 'Oven',
         input = {
         input = {
             {'Coal', 10},
             {'Coal', 10},
Line 91: Line 98:
     {
     {
         name = 'Coal',
         name = 'Coal',
        machine = 'Macerator',
         input = {
         input = {
             {'Coal', 1},
             {'Coal', 1},
Line 102: Line 110:
     {
     {
         name = 'Coal',
         name = 'Coal',
        machine = 'PyrolysisUnit',
         input = {
         input = {
             {'Coal', 1},
             {'Coal', 1},
Line 115: Line 124:
     {
     {
         name = 'Catalyst2',
         name = 'Catalyst2',
        machine = 'Assembler',
         input = {
         input = {
             {'Cell', 1},
             {'Cell', 1},
Line 128: Line 138:
     {
     {
         name = 'ProducerGas',
         name = 'ProducerGas',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'Coal', 1},
             {'Coal', 1},
Line 140: Line 151:
     {
     {
         name = 'Catalyst',
         name = 'Catalyst',
        machine = 'Hand',
         input = {
         input = {
             {'Cell', 1},
             {'Cell', 1},
Line 153: Line 165:
     {
     {
         name = 'Coal',
         name = 'Coal',
        machine = 'Furnace',
         input = {
         input = {
             {'Coal', 1},
             {'Coal', 1},

Latest revision as of 10:32, 30 October 2025

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

return {
    {
        name = 'SteelElectrolyzer',
        machine = 'Hand',
        input = {
            {'SteelPlate', 3},
            {'Coal', 2},
            {'CopperConnector', 2},
        },
        output = {
            {'SteelElectrolyzer', 1},
        },
        ticks = 20,
        tier = 2,
    },
    {
        name = 'AluminiumElectrolyzer',
        machine = 'Hand',
        input = {
            {'AluminiumPlate', 3},
            {'Coal', 2},
            {'CopperConnector', 7},
        },
        output = {
            {'AluminiumElectrolyzer', 1},
        },
        ticks = 20,
        tier = 3,
    },
    {
        name = 'StainlessSteelElectrolyzer',
        machine = 'Hand',
        input = {
            {'StainlessSteelPlate', 3},
            {'Coal', 2},
            {'CopperConnector', 12},
        },
        output = {
            {'StainlessSteelElectrolyzer', 1},
        },
        ticks = 20,
        tier = 4,
    },
    {
        name = 'TitaniumElectrolyzer',
        machine = 'Hand',
        input = {
            {'TitaniumPlate', 3},
            {'Coal', 2},
            {'CopperConnector', 17},
        },
        output = {
            {'TitaniumElectrolyzer', 1},
        },
        ticks = 20,
        tier = 5,
    },
    {
        name = 'CompositeElectrolyzer',
        machine = 'Hand',
        input = {
            {'CompositePlate', 3},
            {'Coal', 2},
            {'CopperConnector', 17},
        },
        output = {
            {'CompositeElectrolyzer', 1},
        },
        ticks = 20,
        tier = 6,
    },
    {
        name = 'NeutroniumElectrolyzer',
        machine = 'Hand',
        input = {
            {'NeutroniumPlate', 3},
            {'Coal', 2},
            {'CopperConnector', 17},
        },
        output = {
            {'NeutroniumElectrolyzer', 1},
        },
        ticks = 20,
        tier = 7,
    },
    {
        name = 'CoalToCoke',
        machine = 'Oven',
        input = {
            {'Coal', 10},
        },
        output = {
            {'Coke', 10},
            {'Creosote', 500},
        },
        ticks = 600,
    },
    {
        name = 'Coal',
        machine = 'Macerator',
        input = {
            {'Coal', 1},
        },
        output = {
            {'CoalDust', 1},
        },
        ticks = 100,
        tier = 1,
    },
    {
        name = 'Coal',
        machine = 'PyrolysisUnit',
        input = {
            {'Coal', 1},
        },
        output = {
            {'Coke', 1},
            {'RawOil', 150},
            {'ProducerGas', 150},
        },
        ticks = 400,
        tier = 3,
    },
    {
        name = 'Catalyst2',
        machine = 'Assembler',
        input = {
            {'Cell', 1},
            {'GoldWire', 10},
            {'Coal', 4},
        },
        output = {
            {'Catalyst', 1},
        },
        ticks = 200,
        tier = 4,
    },
    {
        name = 'ProducerGas',
        machine = 'IndustrialChemReactor',
        input = {
            {'Coal', 1},
        },
        output = {
            {'Ash', 1},
            {'ProducerGas', 200},
        },
        ticks = 400,
        tier = 3,
    },
    {
        name = 'Catalyst',
        machine = 'Hand',
        input = {
            {'Cell', 1},
            {'CopperWire', 40},
            {'Coal', 4},
        },
        output = {
            {'Catalyst', 1},
        },
        ticks = 200,
        tier = 3,
    },
    {
        name = 'Coal',
        machine = 'Furnace',
        input = {
            {'Coal', 1},
        },
        output = {
        },
        ticks = 800.0,
    },
}