Module:Data/Chlorine/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'TitaniumTetrachloride', input = { {'PreparedTitaniumOxideDust', 1}, {'Chlorine', 1000}, }, output = { {'TitaniumTetrachloride', 1000}, }, ticks = 200, }, { name = 'RocketFuel', input = { {'Chlorine', 1000}, {'Ammonia', 1000}, {'Ethanol', 2000}, {'Gasoline', 4000}, {'Catalyst', 1},..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'TitaniumTetrachloride',
         name = 'TitaniumTetrachloride',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'PreparedTitaniumOxideDust', 1},
             {'PreparedTitaniumOxideDust', 1},
Line 13: Line 14:
     {
     {
         name = 'RocketFuel',
         name = 'RocketFuel',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'Chlorine', 1000},
             {'Chlorine', 1000},
Line 28: Line 30:
     {
     {
         name = 'RocketFuel2',
         name = 'RocketFuel2',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'Chlorine', 1000},
             {'Chlorine', 1000},
Line 43: Line 46:
     {
     {
         name = 'AmmoniumChloride',
         name = 'AmmoniumChloride',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'Ammonia', 500},
             {'Ammonia', 500},

Latest revision as of 10:33, 30 October 2025

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

return {
    {
        name = 'TitaniumTetrachloride',
        machine = 'IndustrialChemReactor',
        input = {
            {'PreparedTitaniumOxideDust', 1},
            {'Chlorine', 1000},
        },
        output = {
            {'TitaniumTetrachloride', 1000},
        },
        ticks = 200,
    },
    {
        name = 'RocketFuel',
        machine = 'IndustrialChemReactor',
        input = {
            {'Chlorine', 1000},
            {'Ammonia', 1000},
            {'Ethanol', 2000},
            {'Gasoline', 4000},
            {'Catalyst', 1},
        },
        output = {
            {'RocketFuel', 6000},
        },
        ticks = 600,
        tier = 4,
    },
    {
        name = 'RocketFuel2',
        machine = 'IndustrialChemReactor',
        input = {
            {'Chlorine', 1000},
            {'Ammonia', 1000},
            {'Ethanol', 2000},
            {'Gasoline', 3000},
            {'UltimateCatalyst', 1},
        },
        output = {
            {'RocketFuel', 8000},
        },
        ticks = 600,
        tier = 7,
    },
    {
        name = 'AmmoniumChloride',
        machine = 'IndustrialChemReactor',
        input = {
            {'Ammonia', 500},
            {'Chlorine', 500},
        },
        output = {
            {'AmmoniumChloride', 1},
        },
        ticks = 100,
        tier = 5,
    },
}