Module:Data/YttriumWire/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'YttriumWire', input = { {'YttriumPlate', 1}, }, output = { {'YttriumWire', 1}, }, ticks = 20, }, { name = 'YttriumWire2', input = { {'YttriumPlate', 1}, }, output = { {'YttriumWire', 2}, }, ticks = 40, }, }"
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'YttriumWire',
         name = 'YttriumWire',
        machine = 'Hand',
         input = {
         input = {
             {'YttriumPlate', 1},
             {'YttriumPlate', 1},
Line 12: Line 13:
     {
     {
         name = 'YttriumWire2',
         name = 'YttriumWire2',
        machine = 'Assembler',
         input = {
         input = {
             {'YttriumPlate', 1},
             {'YttriumPlate', 1},

Latest revision as of 10:37, 30 October 2025

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

return {
    {
        name = 'YttriumWire',
        machine = 'Hand',
        input = {
            {'YttriumPlate', 1},
        },
        output = {
            {'YttriumWire', 1},
        },
        ticks = 20,
    },
    {
        name = 'YttriumWire2',
        machine = 'Assembler',
        input = {
            {'YttriumPlate', 1},
        },
        output = {
            {'YttriumWire', 2},
        },
        ticks = 40,
    },
}