Module:Data/Ethylene/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'RawOil3',
         name = 'RawOil3',
        machine = 'PyrolysisUnit',
         input = {
         input = {
             {'RawOil', 2000},
             {'RawOil', 2000},
Line 13: Line 14:
     {
     {
         name = 'Ethylene',
         name = 'Ethylene',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'ProducerGas', 1000},
             {'ProducerGas', 1000},
Line 24: Line 26:
     {
     {
         name = 'RawOil',
         name = 'RawOil',
        machine = 'FractionatingColumn',
         input = {
         input = {
             {'RawOil', 7500},
             {'RawOil', 7500},

Latest revision as of 10:36, 30 October 2025

Documentation for this module may be created at Module:Data/Ethylene/InOutput/doc

return {
    {
        name = 'RawOil3',
        machine = 'PyrolysisUnit',
        input = {
            {'RawOil', 2000},
        },
        output = {
            {'Ethylene', 400.0},
        },
        ticks = 120,
        tier = 3,
    },
    {
        name = 'Ethylene',
        machine = 'IndustrialChemReactor',
        input = {
            {'ProducerGas', 1000},
            {'Catalyst', 1},
        },
        output = {
            {'Ethylene', 1000},
        },
        ticks = 200,
    },
    {
        name = 'RawOil',
        machine = 'FractionatingColumn',
        input = {
            {'RawOil', 7500},
        },
        output = {
            {'HeavyOil', 1000.0},
            {'Diesel', 2500.0},
            {'Gasoline', 1500.0},
            {'Ethylene', 1500.0},
        },
        ticks = 300,
        tier = 4,
    },
}