Module:Data/GoldPlate/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'GoldWire', input = { {'GoldPlate', 1}, }, output = { {'GoldWire', 2}, }, ticks = 100, }, { name = 'GoldPlate', input = { {'GoldPlate', 1}, }, output = { {'GoldDust', 1}, }, ticks = 80, tier = 2, }, { name = 'GoldWire', input = { {'GoldPlate', 1}, }..."
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
return {
return {
    {
        name = 'GoldWire',
        input = {
            {'GoldPlate', 1},
        },
        output = {
            {'GoldWire', 2},
        },
        ticks = 100,
    },
     {
     {
         name = 'GoldPlate',
         name = 'GoldPlate',
        machine = 'Macerator',
         input = {
         input = {
             {'GoldPlate', 1},
             {'GoldPlate', 1},
Line 23: Line 14:
     {
     {
         name = 'GoldWire',
         name = 'GoldWire',
        machine = 'Hand',
         input = {
         input = {
             {'GoldPlate', 1},
             {'GoldPlate', 1},
Line 29: Line 21:
             {'GoldWire', 1},
             {'GoldWire', 1},
         },
         },
         ticks = 20,
         ticks = 80,
     },
     },
     {
     {
         name = 'GoldWire2',
         name = 'GoldWire2',
        machine = 'Assembler',
         input = {
         input = {
             {'GoldPlate', 1},
             {'GoldPlate', 1},

Latest revision as of 15:48, 24 August 2026

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

return {
    {
        name = 'GoldPlate',
        machine = 'Macerator',
        input = {
            {'GoldPlate', 1},
        },
        output = {
            {'GoldDust', 1},
        },
        ticks = 80,
        tier = 2,
    },
    {
        name = 'GoldWire',
        machine = 'Hand',
        input = {
            {'GoldPlate', 1},
        },
        output = {
            {'GoldWire', 1},
        },
        ticks = 80,
    },
    {
        name = 'GoldWire2',
        machine = 'Assembler',
        input = {
            {'GoldPlate', 1},
        },
        output = {
            {'GoldWire', 2},
        },
        ticks = 40,
    },
}