Module:Data/BasicCoil/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'StainlessSteelElectricEngine', input = { {'ReinforcedFrame', 1}, {'StainlessSteelPlate', 2}, {'BasicCoil', 1}, }, output = { {'StainlessSteelElectricEngine', 1}, }, ticks = 20, tier = 4, }, { name = 'AdvancedCoil', input = { {'BasicCoil', 3}, {'StainlessSteelPlate', 2}, }, output = {..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'StainlessSteelElectricEngine',
         name = 'StainlessSteelElectricEngine',
        machine = 'Hand',
         input = {
         input = {
             {'ReinforcedFrame', 1},
             {'ReinforcedFrame', 1},
Line 15: Line 16:
     {
     {
         name = 'AdvancedCoil',
         name = 'AdvancedCoil',
        machine = 'Hand',
         input = {
         input = {
             {'BasicCoil', 3},
             {'BasicCoil', 3},

Latest revision as of 10:32, 30 October 2025

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

return {
    {
        name = 'StainlessSteelElectricEngine',
        machine = 'Hand',
        input = {
            {'ReinforcedFrame', 1},
            {'StainlessSteelPlate', 2},
            {'BasicCoil', 1},
        },
        output = {
            {'StainlessSteelElectricEngine', 1},
        },
        ticks = 20,
        tier = 4,
    },
    {
        name = 'AdvancedCoil',
        machine = 'Hand',
        input = {
            {'BasicCoil', 3},
            {'StainlessSteelPlate', 2},
        },
        output = {
            {'AdvancedCoil', 1},
        },
        ticks = 200,
        tier = 3,
    },
}