Module:Data/Ethanol/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 = 'RocketFuel',
         name = 'HydrocarbonBlend',
         machine = 'IndustrialChemReactor',
         machine = 'IndustrialChemReactor',
         input = {
         input = {
            {'Chlorine', 1000},
            {'Ammonia', 1000},
             {'Ethanol', 2000},
             {'Ethanol', 2000},
             {'Gasoline', 4000},
             {'Gasoline', 4000},
Line 11: Line 9:
         },
         },
         output = {
         output = {
             {'RocketFuel', 6000},
             {'HydrocarbonBlend', 6000},
         },
         },
         ticks = 600,
         ticks = 200,
         tier = 4,
         tier = 6,
     },
     },
     {
     {
         name = 'RocketFuel2',
         name = 'HydrocarbonBlend2',
         machine = 'IndustrialChemReactor',
         machine = 'IndustrialChemReactor',
         input = {
         input = {
            {'Chlorine', 1000},
            {'Ammonia', 1000},
             {'Ethanol', 2000},
             {'Ethanol', 2000},
             {'Gasoline', 3000},
             {'Gasoline', 3000},
Line 27: Line 23:
         },
         },
         output = {
         output = {
             {'RocketFuel', 8000},
             {'HydrocarbonBlend', 5000},
         },
         },
         ticks = 600,
         ticks = 200,
         tier = 7,
         tier = 7,
     },
     },

Latest revision as of 15:48, 24 August 2026

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,
    },
}