Module:Data/ChalcopyriteDust/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'ElectrolyzerChalcopyriteDust', input = { {'ChalcopyriteDust', 2}, }, output = { {'CopperDust', 1}, {'Sulfur', 1}, }, ticks = 200, tier = 2, }, { name = 'ChalcopyriteDust', input = { {'ChalcopyriteDust', 1}, }, output = { {'CopperPlate', 1}, }, ticks = 50, tier = 0, }, }"
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'ElectrolyzerChalcopyriteDust',
         name = 'ElectrolyzerChalcopyriteDust',
        machine = 'Electrolyzer',
         input = {
         input = {
             {'ChalcopyriteDust', 2},
             {'ChalcopyriteDust', 2},
Line 14: Line 15:
     {
     {
         name = 'ChalcopyriteDust',
         name = 'ChalcopyriteDust',
        machine = 'Smelter',
         input = {
         input = {
             {'ChalcopyriteDust', 1},
             {'ChalcopyriteDust', 1},

Latest revision as of 10:33, 30 October 2025

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

return {
    {
        name = 'ElectrolyzerChalcopyriteDust',
        machine = 'Electrolyzer',
        input = {
            {'ChalcopyriteDust', 2},
        },
        output = {
            {'CopperDust', 1},
            {'Sulfur', 1},
        },
        ticks = 200,
        tier = 2,
    },
    {
        name = 'ChalcopyriteDust',
        machine = 'Smelter',
        input = {
            {'ChalcopyriteDust', 1},
        },
        output = {
            {'CopperPlate', 1},
        },
        ticks = 50,
        tier = 0,
    },
}