Module:Data/SteelElectricEngine/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 13: Line 13:
         },
         },
         ticks = 20,
         ticks = 20,
        tier = 2,
    },
    {
        name = 'OffroadVehicle',
        machine = 'Hand',
        input = {
            {'SteelPlate', 40},
            {'SteelParts', 60},
            {'SteelPipe', 20},
            {'SteelElectricEngine', 4},
            {'BasicFrame', 8},
            {'Circuit', 20},
        },
        output = {
            {'OffroadVehicle', 1},
        },
        ticks = 600,
    },
    {
        name = 'Boat',
        machine = 'Hand',
        input = {
            {'SteelPlate', 30},
            {'SteelParts', 20},
            {'SteelElectricEngine', 1},
            {'BasicFrame', 4},
        },
        output = {
            {'Boat', 1},
        },
        ticks = 400,
    },
    {
        name = 'SteelAlternator',
        machine = 'Hand',
        input = {
            {'CopperWire', 24},
            {'SteelParts', 4},
            {'SteelElectricEngine', 1},
            {'Circuit', 1},
        },
        output = {
            {'SteelAlternator', 1},
        },
        ticks = 120,
         tier = 2,
         tier = 2,
     },
     },
}
}

Latest revision as of 15:47, 24 August 2026

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

return {
    {
        name = 'SteelLoader',
        machine = 'Hand',
        input = {
            {'SteelRobotArm', 5},
            {'SteelElectricEngine', 1},
            {'Circuit', 2},
            {'SteelParts', 4},
        },
        output = {
            {'SteelLoader', 1},
        },
        ticks = 20,
        tier = 2,
    },
    {
        name = 'OffroadVehicle',
        machine = 'Hand',
        input = {
            {'SteelPlate', 40},
            {'SteelParts', 60},
            {'SteelPipe', 20},
            {'SteelElectricEngine', 4},
            {'BasicFrame', 8},
            {'Circuit', 20},
        },
        output = {
            {'OffroadVehicle', 1},
        },
        ticks = 600,
    },
    {
        name = 'Boat',
        machine = 'Hand',
        input = {
            {'SteelPlate', 30},
            {'SteelParts', 20},
            {'SteelElectricEngine', 1},
            {'BasicFrame', 4},
        },
        output = {
            {'Boat', 1},
        },
        ticks = 400,
    },
    {
        name = 'SteelAlternator',
        machine = 'Hand',
        input = {
            {'CopperWire', 24},
            {'SteelParts', 4},
            {'SteelElectricEngine', 1},
            {'Circuit', 1},
        },
        output = {
            {'SteelAlternator', 1},
        },
        ticks = 120,
        tier = 2,
    },
}