Module:Data/NitricAcid/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'PlatinumSolution',
         name = 'PlatinumSolution',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'PyroplatiteDust', 10},
             {'PyroplatiteDust', 10},
Line 14: Line 15:
     {
     {
         name = 'HighCetaneDiesel',
         name = 'HighCetaneDiesel',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'Diesel', 900},
             {'Diesel', 900},
Line 26: Line 28:
     {
     {
         name = 'MalachiteImpureOreGravel',
         name = 'MalachiteImpureOreGravel',
        machine = 'ChemicalBath',
         input = {
         input = {
             {'MalachiteOreImpureGravel', 1},
             {'MalachiteOreImpureGravel', 1},
Line 39: Line 42:
     {
     {
         name = 'BauxiteImpureOreGravel',
         name = 'BauxiteImpureOreGravel',
        machine = 'ChemicalBath',
         input = {
         input = {
             {'BauxiteOreImpureGravel', 1},
             {'BauxiteOreImpureGravel', 1},
Line 52: Line 56:
     {
     {
         name = 'CinnabarImpureOreGravel',
         name = 'CinnabarImpureOreGravel',
        machine = 'ChemicalBath',
         input = {
         input = {
             {'CinnabarOreImpureGravel', 1},
             {'CinnabarOreImpureGravel', 1},

Latest revision as of 10:33, 30 October 2025

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

return {
    {
        name = 'PlatinumSolution',
        machine = 'IndustrialChemReactor',
        input = {
            {'PyroplatiteDust', 10},
            {'NitricAcid', 1000},
        },
        output = {
            {'PlatinumSolution', 1000},
        },
        ticks = 800,
        tier = 5,
    },
    {
        name = 'HighCetaneDiesel',
        machine = 'IndustrialChemReactor',
        input = {
            {'Diesel', 900},
            {'NitricAcid', 100},
        },
        output = {
            {'HighCetaneDiesel', 1000},
        },
        ticks = 300,
        tier = 5,
    },
    {
        name = 'MalachiteImpureOreGravel',
        machine = 'ChemicalBath',
        input = {
            {'MalachiteOreImpureGravel', 1},
            {'NitricAcid', 250},
        },
        output = {
            {'CopperDust', 1},
            {'SiliconOxide', 1},
        },
        ticks = 200,
        tier = 3,
    },
    {
        name = 'BauxiteImpureOreGravel',
        machine = 'ChemicalBath',
        input = {
            {'BauxiteOreImpureGravel', 1},
            {'NitricAcid', 250},
        },
        output = {
            {'TitaniumOxideDust', 1},
            {'SiliconOxide', 1},
        },
        ticks = 200,
        tier = 3,
    },
    {
        name = 'CinnabarImpureOreGravel',
        machine = 'ChemicalBath',
        input = {
            {'CinnabarOreImpureGravel', 1},
            {'NitricAcid', 250},
        },
        output = {
            {'RareEarthSludge', 1},
            {'SiliconOxide', 1},
        },
        ticks = 200,
        tier = 3,
    },
}