Module:Data/RubyDust/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'ElectrolyzerRubyDust', input = { {'RubyDust', 8}, }, output = { {'AluminiumOxideDust', 4}, {'ChromiumDust', 1}, {'Oxygen', 3000}, }, ticks = 200, tier = 2, }, { name = 'RubyDust', input = { {'RubyDust', 1}, }, output = { {'RubyDust', 1}, }, ticks = 50, tier =..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'ElectrolyzerRubyDust',
         name = 'ElectrolyzerRubyDust',
        machine = 'Electrolyzer',
         input = {
         input = {
             {'RubyDust', 8},
             {'RubyDust', 8},
Line 15: Line 16:
     {
     {
         name = 'RubyDust',
         name = 'RubyDust',
        machine = 'Smelter',
         input = {
         input = {
             {'RubyDust', 1},
             {'RubyDust', 1},

Latest revision as of 10:33, 30 October 2025

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

return {
    {
        name = 'ElectrolyzerRubyDust',
        machine = 'Electrolyzer',
        input = {
            {'RubyDust', 8},
        },
        output = {
            {'AluminiumOxideDust', 4},
            {'ChromiumDust', 1},
            {'Oxygen', 3000},
        },
        ticks = 200,
        tier = 2,
    },
    {
        name = 'RubyDust',
        machine = 'Smelter',
        input = {
            {'RubyDust', 1},
        },
        output = {
            {'RubyDust', 1},
        },
        ticks = 50,
        tier = 3,
    },
}