Module:Data/BauxiteDust/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'ElectrolyzerBauxiteDust', input = { {'BauxiteDust', 12}, }, output = { {'AluminiumOxideDust', 6}, {'TitaniumOxideDust', 1}, {'Oxygen', 5000}, }, ticks = 200, tier = 2, }, { name = 'BauxiteDust', input = { {'BauxiteDust', 1}, }, output = { {'BauxiteDust', 1}, }, ticks..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'ElectrolyzerBauxiteDust',
         name = 'ElectrolyzerBauxiteDust',
        machine = 'Electrolyzer',
         input = {
         input = {
             {'BauxiteDust', 12},
             {'BauxiteDust', 12},
Line 15: Line 16:
     {
     {
         name = 'BauxiteDust',
         name = 'BauxiteDust',
        machine = 'Smelter',
         input = {
         input = {
             {'BauxiteDust', 1},
             {'BauxiteDust', 1},

Latest revision as of 10:33, 30 October 2025

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

return {
    {
        name = 'ElectrolyzerBauxiteDust',
        machine = 'Electrolyzer',
        input = {
            {'BauxiteDust', 12},
        },
        output = {
            {'AluminiumOxideDust', 6},
            {'TitaniumOxideDust', 1},
            {'Oxygen', 5000},
        },
        ticks = 200,
        tier = 2,
    },
    {
        name = 'BauxiteDust',
        machine = 'Smelter',
        input = {
            {'BauxiteDust', 1},
        },
        output = {
            {'BauxiteDust', 1},
        },
        ticks = 50,
        tier = 3,
    },
}