Module:Data/CopperRobotArm/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'CopperLoader', input = { {'CopperRobotArm', 5}, {'CopperParts', 1}, {'CopperParts', 2}, {'CopperParts', 2}, }, output = { {'CopperLoader', 1}, }, ticks = 20, tier = 1, }, { name = 'CopperPump', input = { {'CopperRobotArm', 1}, {'CopperPipe', 1}, }, output = {..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'CopperLoader',
         name = 'CopperLoader',
        machine = 'Hand',
         input = {
         input = {
             {'CopperRobotArm', 5},
             {'CopperRobotArm', 5},
Line 16: Line 17:
     {
     {
         name = 'CopperPump',
         name = 'CopperPump',
        machine = 'Hand',
         input = {
         input = {
             {'CopperRobotArm', 1},
             {'CopperRobotArm', 1},
Line 28: Line 30:
     {
     {
         name = 'CopperDrillingRig',
         name = 'CopperDrillingRig',
        machine = 'Hand',
         input = {
         input = {
             {'CopperPlate', 4},
             {'CopperPlate', 4},
Line 41: Line 44:
     {
     {
         name = 'CopperConstructor',
         name = 'CopperConstructor',
        machine = 'Hand',
         input = {
         input = {
             {'CopperRobotArm', 1},
             {'CopperRobotArm', 1},
             {'CopperPlate', 3},
             {'CopperPlate', 3},
             {'CopperParts', 2},
             {'CopperParts', 2},
             {'CopperParts', 1},
             {'CopperParts', 2},
         },
         },
         output = {
         output = {
Line 55: Line 59:
     {
     {
         name = 'CopperAutomaticFarm',
         name = 'CopperAutomaticFarm',
        machine = 'Hand',
         input = {
         input = {
             {'DirtSurface', 4},
             {'DirtSurface', 4},

Latest revision as of 10:32, 30 October 2025

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

return {
    {
        name = 'CopperLoader',
        machine = 'Hand',
        input = {
            {'CopperRobotArm', 5},
            {'CopperParts', 1},
            {'CopperParts', 2},
            {'CopperParts', 2},
        },
        output = {
            {'CopperLoader', 1},
        },
        ticks = 20,
        tier = 1,
    },
    {
        name = 'CopperPump',
        machine = 'Hand',
        input = {
            {'CopperRobotArm', 1},
            {'CopperPipe', 1},
        },
        output = {
            {'CopperPump', 1},
        },
        ticks = 20,
        tier = 1,
    },
    {
        name = 'CopperDrillingRig',
        machine = 'Hand',
        input = {
            {'CopperPlate', 4},
            {'CopperRobotArm', 1},
            {'CopperParts', 6},
        },
        output = {
            {'CopperDrillingRig', 1},
        },
        ticks = 20,
        tier = 1,
    },
    {
        name = 'CopperConstructor',
        machine = 'Hand',
        input = {
            {'CopperRobotArm', 1},
            {'CopperPlate', 3},
            {'CopperParts', 2},
            {'CopperParts', 2},
        },
        output = {
            {'CopperConstructor', 1},
        },
        ticks = 20,
        tier = 1,
    },
    {
        name = 'CopperAutomaticFarm',
        machine = 'Hand',
        input = {
            {'DirtSurface', 4},
            {'CopperRobotArm', 2},
            {'CopperParts', 4},
        },
        output = {
            {'CopperAutomaticFarm', 1},
        },
        ticks = 20,
        tier = 1,
    },
}