Module:Data/ProducerGas/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'Coal', input = { {'Coal', 1}, }, output = { {'Coke', 1}, {'RawOil', 150}, {'ProducerGas', 150}, }, ticks = 400, tier = 3, }, { name = 'HeavyOilPyrolysis', input = { {'HeavyOil', 1000}, }, output = { {'ProducerGas', 1300}, {'Ash', 2}, }, ticks = 200,..."
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
return {
return {
    {
        name = 'Coal',
        input = {
            {'Coal', 1},
        },
        output = {
            {'Coke', 1},
            {'RawOil', 150},
            {'ProducerGas', 150},
        },
        ticks = 400,
        tier = 3,
    },
     {
     {
         name = 'HeavyOilPyrolysis',
         name = 'HeavyOilPyrolysis',
        machine = 'PyrolysisUnit',
         input = {
         input = {
             {'HeavyOil', 1000},
             {'HeavyOil', 1000},
Line 27: Line 15:
     {
     {
         name = 'Methane2',
         name = 'Methane2',
        machine = 'PyrolysisUnit',
         input = {
         input = {
             {'Methane', 4000},
             {'Methane', 4000},
Line 38: Line 27:
     {
     {
         name = 'ProducerGas',
         name = 'ProducerGas',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'Coal', 1},
             {'CoalDust', 1},
         },
         },
         output = {
         output = {

Latest revision as of 15:50, 24 August 2026

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

return {
    {
        name = 'HeavyOilPyrolysis',
        machine = 'PyrolysisUnit',
        input = {
            {'HeavyOil', 1000},
        },
        output = {
            {'ProducerGas', 1300},
            {'Ash', 2},
        },
        ticks = 200,
        tier = 3,
    },
    {
        name = 'Methane2',
        machine = 'PyrolysisUnit',
        input = {
            {'Methane', 4000},
        },
        output = {
            {'ProducerGas', 2500},
        },
        ticks = 200,
        tier = 3,
    },
    {
        name = 'ProducerGas',
        machine = 'IndustrialChemReactor',
        input = {
            {'CoalDust', 1},
        },
        output = {
            {'Ash', 1},
            {'ProducerGas', 200},
        },
        ticks = 400,
        tier = 3,
    },
}