Module:Data/Ethanol/InInput

From Evospace
Revision as of 15:48, 24 August 2026 by Evospace (talk | contribs)
(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/Ethanol/InInput/doc

return {
    {
        name = 'HydrocarbonBlend',
        machine = 'IndustrialChemReactor',
        input = {
            {'Ethanol', 2000},
            {'Gasoline', 4000},
            {'Catalyst', 1},
        },
        output = {
            {'HydrocarbonBlend', 6000},
        },
        ticks = 200,
        tier = 6,
    },
    {
        name = 'HydrocarbonBlend2',
        machine = 'IndustrialChemReactor',
        input = {
            {'Ethanol', 2000},
            {'Gasoline', 3000},
            {'UltimateCatalyst', 1},
        },
        output = {
            {'HydrocarbonBlend', 5000},
        },
        ticks = 200,
        tier = 7,
    },
    {
        name = 'RapeseedOil',
        machine = 'IndustrialChemReactor',
        input = {
            {'RapeseedOil', 1000},
            {'Ethanol', 150},
            {'Catalyst', 1},
        },
        output = {
            {'Diesel', 400},
        },
        ticks = 400,
    },
    {
        name = 'Ethanol',
        machine = 'FluidFurnace',
        input = {
            {'Ethanol', 1000},
        },
        output = {
        },
        ticks = 1750.0,
    },
}