Module:Data/CopperWire/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'CopperWire', input = { {'CopperPlate', 1}, }, output = { {'CopperWire', 1}, }, ticks = 20, }, { name = 'CopperWire2', input = { {'CopperPlate', 1}, }, output = { {'CopperWire', 2}, }, ticks = 40, }, }"
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
     {
     {
         name = 'CopperWire',
         name = 'CopperWire',
        machine = 'Hand',
         input = {
         input = {
             {'CopperPlate', 1},
             {'CopperPlate', 1},
Line 8: Line 9:
             {'CopperWire', 1},
             {'CopperWire', 1},
         },
         },
         ticks = 20,
         ticks = 80,
     },
     },
     {
     {
         name = 'CopperWire2',
         name = 'CopperWire2',
        machine = 'Assembler',
         input = {
         input = {
             {'CopperPlate', 1},
             {'CopperPlate', 1},

Latest revision as of 15:51, 24 August 2026

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

return {
    {
        name = 'CopperWire',
        machine = 'Hand',
        input = {
            {'CopperPlate', 1},
        },
        output = {
            {'CopperWire', 1},
        },
        ticks = 80,
    },
    {
        name = 'CopperWire2',
        machine = 'Assembler',
        input = {
            {'CopperPlate', 1},
        },
        output = {
            {'CopperWire', 2},
        },
        ticks = 40,
    },
}