Module:Data/CarbonMonoxide/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
return {
return {
     {
     {
         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/CarbonMonoxide/InInput/doc

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