Module:HandRecipeDictionary

From Evospace
Revision as of 12:37, 31 July 2025 by Evospace (talk | contribs)
Jump to navigation Jump to search

Documentation for this module may be created at Module:HandRecipeDictionary/doc

return {
    {
        name = 'SandSurface',
        input = {
            {'GravelSurface', 1},
        },
        output = {
            {'SandSurface', 1},
        },
        ticks = 20,
    },
    {
        name = 'GravelSurface',
        input = {
            {'StoneSurface', 1},
        },
        output = {
            {'GravelSurface', 1},
        },
        ticks = 20,
    },
    {
        name = 'Steampack',
        input = {
            {'CopperParts', 6},
            {'CopperPlate', 2},
            {'CopperPipe', 4},
            {'Circuit', 10},
        },
        output = {
            {'Steampack', 1},
        },
        ticks = 20,
    },
    {
        name = 'AdvancedSteampack',
        input = {
            {'StainlessSteelParts', 30},
            {'StainlessSteelPlate', 10},
            {'CopperPipe', 30},
            {'Processor', 10},
        },
        output = {
            {'AdvancedSteampack', 1},
        },
        ticks = 20,
    },
    {
        name = 'HighCapacitySteampack',
        input = {
            {'SteelParts', 30},
            {'SteelPlate', 10},
            {'CopperPipe', 5},
            {'Circuit', 15},
        },
        output = {
            {'HighCapacitySteampack', 1},
        },
        ticks = 20,
    },
    {
        name = 'HighPressureSteampack',
        input = {
            {'SteelParts', 6},
            {'SteelPlate', 2},
            {'CopperPipe', 30},
            {'Circuit', 15},
        },
        output = {
            {'HighPressureSteampack', 1},
        },
        ticks = 20,
    },
    {
        name = 'Jetpack',
        input = {
            {'AluminiumParts', 10},
            {'AluminiumPlate', 3},
            {'AluminiumPipe', 6},
            {'AdvancedCircuit', 10},
            {'AluminiumElectricEngine', 2},
        },
        output = {
            {'Jetpack', 1},
        },
        ticks = 20,
    },
    {
        name = 'AdvancedJetpack',
        input = {
            {'StainlessSteelParts', 10},
            {'StainlessSteelPlate', 3},
            {'StainlessSteelPipe', 6},
            {'Processor', 10},
            {'StainlessSteelElectricEngine', 2},
        },
        output = {
            {'AdvancedJetpack', 1},
        },
        ticks = 20,
    },
    {
        name = 'AntigravityUnit',
        input = {
            {'CompositeParts', 20},
            {'CompositePlate', 2},
            {'CompositePipe', 6},
            {'QuantumProcessor', 10},
            {'Catalyst', 4},
            {'CompositeElectricEngine', 8},
        },
        output = {
            {'AntigravityUnit', 1},
        },
        ticks = 20,
    },
    {
        name = 'Flashlight',
        input = {
            {'SteelPipe', 1},
            {'SteelLamp', 1},
        },
        output = {
            {'Flashlight', 1},
        },
        ticks = 20,
    },
}