Module:Data/SteelRobotArm/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'SteelLoader', input = { {'SteelRobotArm', 5}, {'SteelElectricEngine', 1}, {'Circuit', 2}, {'SteelParts', 4}, }, output = { {'SteelLoader', 1}, }, ticks = 20, tier = 2, }, { name = 'SteelPump', input = { {'SteelRobotArm', 1}, {'SteelPipe', 1}, }, output = { {'S..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'SteelLoader',
         name = 'SteelLoader',
        machine = 'Hand',
         input = {
         input = {
             {'SteelRobotArm', 5},
             {'SteelRobotArm', 5},
Line 16: Line 17:
     {
     {
         name = 'SteelPump',
         name = 'SteelPump',
        machine = 'Hand',
         input = {
         input = {
             {'SteelRobotArm', 1},
             {'SteelRobotArm', 1},
Line 28: Line 30:
     {
     {
         name = 'SteelDrillingRig',
         name = 'SteelDrillingRig',
        machine = 'Hand',
         input = {
         input = {
             {'SteelPlate', 4},
             {'SteelPlate', 4},
Line 41: Line 44:
     {
     {
         name = 'SteelConstructor',
         name = 'SteelConstructor',
        machine = 'Hand',
         input = {
         input = {
             {'SteelRobotArm', 1},
             {'SteelRobotArm', 1},
Line 55: Line 59:
     {
     {
         name = 'SteelAutomaticFarm',
         name = 'SteelAutomaticFarm',
        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/SteelRobotArm/InInput/doc

return {
    {
        name = 'SteelLoader',
        machine = 'Hand',
        input = {
            {'SteelRobotArm', 5},
            {'SteelElectricEngine', 1},
            {'Circuit', 2},
            {'SteelParts', 4},
        },
        output = {
            {'SteelLoader', 1},
        },
        ticks = 20,
        tier = 2,
    },
    {
        name = 'SteelPump',
        machine = 'Hand',
        input = {
            {'SteelRobotArm', 1},
            {'SteelPipe', 1},
        },
        output = {
            {'SteelPump', 1},
        },
        ticks = 20,
        tier = 2,
    },
    {
        name = 'SteelDrillingRig',
        machine = 'Hand',
        input = {
            {'SteelPlate', 4},
            {'SteelRobotArm', 2},
            {'SteelParts', 12},
        },
        output = {
            {'SteelDrillingRig', 1},
        },
        ticks = 20,
        tier = 2,
    },
    {
        name = 'SteelConstructor',
        machine = 'Hand',
        input = {
            {'SteelRobotArm', 1},
            {'SteelPlate', 3},
            {'SteelParts', 4},
            {'Circuit', 2},
        },
        output = {
            {'SteelConstructor', 1},
        },
        ticks = 20,
        tier = 2,
    },
    {
        name = 'SteelAutomaticFarm',
        machine = 'Hand',
        input = {
            {'DirtSurface', 4},
            {'SteelRobotArm', 2},
            {'SteelParts', 8},
        },
        output = {
            {'SteelAutomaticFarm', 1},
        },
        ticks = 20,
        tier = 2,
    },
}