Module:Data/Hydrogen/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 13: Line 13:
     },
     },
     {
     {
         name = 'Methanol',
         name = 'Ethanol',
         machine = 'IndustrialChemReactor',
         machine = 'IndustrialChemReactor',
         input = {
         input = {

Latest revision as of 22:14, 10 April 2026

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

return {
    {
        name = 'Ammonia',
        machine = 'IndustrialChemReactor',
        input = {
            {'Nitrogen', 250},
            {'Hydrogen', 750},
        },
        output = {
            {'Ammonia', 1000},
        },
        ticks = 200,
    },
    {
        name = 'Ethanol',
        machine = 'IndustrialChemReactor',
        input = {
            {'CarbonMonoxide', 250},
            {'Hydrogen', 750},
        },
        output = {
            {'Ethanol', 1000},
        },
        ticks = 100,
    },
    {
        name = 'Hydrogen',
        machine = 'FluidFurnace',
        input = {
            {'Hydrogen', 1000},
        },
        output = {
        },
        ticks = 1250.0,
    },
}