Module:Data/Mercury/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'CinnabarDust', input = { {'CinnabarDust', 2}, }, output = { {'Sulfur', 1}, {'Mercury', 200}, }, ticks = 200, tier = 2, }, { name = 'HotMercury', input = { {'HotMercury', 1000}, }, output = { {'Mercury', 1000}, }, ticks = 600, }, }"
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'CinnabarDust',
         name = 'CinnabarDust',
        machine = 'Electrolyzer',
         input = {
         input = {
             {'CinnabarDust', 2},
             {'CinnabarDust', 2},
Line 14: Line 15:
     {
     {
         name = 'HotMercury',
         name = 'HotMercury',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'HotMercury', 1000},
             {'HotMercury', 1000},

Latest revision as of 10:36, 30 October 2025

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

return {
    {
        name = 'CinnabarDust',
        machine = 'Electrolyzer',
        input = {
            {'CinnabarDust', 2},
        },
        output = {
            {'Sulfur', 1},
            {'Mercury', 200},
        },
        ticks = 200,
        tier = 2,
    },
    {
        name = 'HotMercury',
        machine = 'IndustrialChemReactor',
        input = {
            {'HotMercury', 1000},
        },
        output = {
            {'Mercury', 1000},
        },
        ticks = 600,
    },
}