Module:Data/TitaniumOxideDust/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'ElectrolyzerBauxiteDust',
         name = 'ElectrolyzerBauxiteDust',
        machine = 'Electrolyzer',
         input = {
         input = {
             {'BauxiteDust', 12},
             {'BauxiteDust', 12},
Line 15: Line 16:
     {
     {
         name = 'BauxiteImpureOreGravel',
         name = 'BauxiteImpureOreGravel',
        machine = 'ChemicalBath',
         input = {
         input = {
             {'BauxiteOreImpureGravel', 1},
             {'BauxiteOreImpureGravel', 1},

Latest revision as of 10:36, 30 October 2025

Documentation for this module may be created at Module:Data/TitaniumOxideDust/InOutput/doc

return {
    {
        name = 'ElectrolyzerBauxiteDust',
        machine = 'Electrolyzer',
        input = {
            {'BauxiteDust', 12},
        },
        output = {
            {'AluminiumOxideDust', 6},
            {'TitaniumOxideDust', 1},
            {'Oxygen', 5000},
        },
        ticks = 200,
        tier = 2,
    },
    {
        name = 'BauxiteImpureOreGravel',
        machine = 'ChemicalBath',
        input = {
            {'BauxiteOreImpureGravel', 1},
            {'NitricAcid', 250},
        },
        output = {
            {'TitaniumOxideDust', 1},
            {'SiliconOxide', 1},
        },
        ticks = 200,
        tier = 3,
    },
}