Module:Data/Ethanol/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'RocketFuel', input = { {'Chlorine', 1000}, {'Ammonia', 1000}, {'Ethanol', 2000}, {'Gasoline', 4000}, {'Catalyst', 1}, }, output = { {'RocketFuel', 6000}, }, ticks = 600, tier = 4, }, { name = 'RocketFuel2', input = { {'Chlorine', 1000}, {'Ammonia', 1000}, {'Ethano..."
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
return {
return {
     {
     {
         name = 'RocketFuel',
         name = 'HydrocarbonBlend',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
            {'Chlorine', 1000},
            {'Ammonia', 1000},
             {'Ethanol', 2000},
             {'Ethanol', 2000},
             {'Gasoline', 4000},
             {'Gasoline', 4000},
Line 10: Line 9:
         },
         },
         output = {
         output = {
             {'RocketFuel', 6000},
             {'HydrocarbonBlend', 6000},
         },
         },
         ticks = 600,
         ticks = 200,
         tier = 4,
         tier = 6,
     },
     },
     {
     {
         name = 'RocketFuel2',
         name = 'HydrocarbonBlend2',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
            {'Chlorine', 1000},
            {'Ammonia', 1000},
             {'Ethanol', 2000},
             {'Ethanol', 2000},
             {'Gasoline', 3000},
             {'Gasoline', 3000},
Line 25: Line 23:
         },
         },
         output = {
         output = {
             {'RocketFuel', 8000},
             {'HydrocarbonBlend', 5000},
         },
         },
         ticks = 600,
         ticks = 200,
         tier = 7,
         tier = 7,
     },
     },
     {
     {
         name = 'RapeseedOil',
         name = 'RapeseedOil',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'RapeseedOil', 1000},
             {'RapeseedOil', 1000},
Line 44: Line 43:
     {
     {
         name = 'Ethanol',
         name = 'Ethanol',
        machine = 'FluidFurnace',
         input = {
         input = {
             {'Ethanol', 1000},
             {'Ethanol', 1000},

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