Module:Data/Catalyst/InInput

From Evospace
Revision as of 20:00, 31 July 2025 by Evospace (talk | contribs) (Created page with "return { { name = 'StainlessSteelCombustionEngine', input = { {'StainlessSteelPlate', 10}, {'StainlessSteelParts', 24}, {'Processor', 3}, {'Catalyst', 1}, }, output = { {'StainlessSteelCombustionEngine', 1}, }, ticks = 100, tier = 4, }, { name = 'TitaniumCombustionEngine', input = { {'TitaniumPlate', 10},...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

return {
    {
        name = 'StainlessSteelCombustionEngine',
        input = {
            {'StainlessSteelPlate', 10},
            {'StainlessSteelParts', 24},
            {'Processor', 3},
            {'Catalyst', 1},
        },
        output = {
            {'StainlessSteelCombustionEngine', 1},
        },
        ticks = 100,
        tier = 4,
    },
    {
        name = 'TitaniumCombustionEngine',
        input = {
            {'TitaniumPlate', 10},
            {'TitaniumParts', 24},
            {'QuantumCircuit', 3},
            {'Catalyst', 1},
        },
        output = {
            {'TitaniumCombustionEngine', 1},
        },
        ticks = 100,
        tier = 5,
    },
    {
        name = 'CompositeCombustionEngine',
        input = {
            {'CompositePlate', 10},
            {'CompositeParts', 24},
            {'QuantumProcessor', 3},
            {'Catalyst', 1},
        },
        output = {
            {'CompositeCombustionEngine', 1},
        },
        ticks = 100,
        tier = 6,
    },
    {
        name = 'NeutroniumCombustionEngine',
        input = {
            {'NeutroniumPlate', 10},
            {'NeutroniumParts', 24},
            {'QuantumBrain', 3},
            {'Catalyst', 1},
        },
        output = {
            {'NeutroniumCombustionEngine', 1},
        },
        ticks = 100,
        tier = 7,
    },
    {
        name = 'PolyethyleneSheet',
        input = {
            {'Ethylene', 1000},
            {'Catalyst', 1},
        },
        output = {
            {'PolyethyleneSheet', 10},
        },
        ticks = 600,
        tier = 3,
    },
    {
        name = 'RocketFuel',
        input = {
            {'Chlorine', 1000},
            {'Ammonia', 1000},
            {'Ethanol', 2000},
            {'Gasoline', 4000},
            {'Catalyst', 1},
        },
        output = {
            {'RocketFuel', 6000},
        },
        ticks = 600,
        tier = 4,
    },
    {
        name = 'Ethylene',
        input = {
            {'ProducerGas', 1000},
            {'Catalyst', 1},
        },
        output = {
            {'Ethylene', 1000},
        },
        ticks = 200,
    },
    {
        name = 'SulfuricAcid',
        input = {
            {'Sulfur', 1},
            {'Water', 1000},
            {'Catalyst', 1},
        },
        output = {
            {'SulfuricAcid', 300},
        },
        ticks = 200,
        tier = 4,
    },
    {
        name = 'RapeseedOil',
        input = {
            {'RapeseedOil', 1000},
            {'Ethanol', 150},
            {'Catalyst', 1},
        },
        output = {
            {'Diesel', 400},
        },
        ticks = 400,
    },
    {
        name = 'Superfuel',
        input = {
            {'HighCetaneDiesel', 1000},
            {'Catalyst', 1},
        },
        output = {
            {'Superfuel', 1000},
        },
        ticks = 3000,
    },
    {
        name = 'AntigravityUnit',
        input = {
            {'CompositeParts', 20},
            {'CompositePlate', 2},
            {'CompositePipe', 6},
            {'QuantumProcessor', 10},
            {'Catalyst', 4},
            {'CompositeElectricEngine', 8},
        },
        output = {
            {'AntigravityUnit', 1},
        },
        ticks = 20,
    },
}