Module:Data/HeavyOil/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'HeavyOilPyrolysis', input = { {'HeavyOil', 1000}, }, output = { {'ProducerGas', 1300}, {'Ash', 2}, }, ticks = 200, tier = 3, }, { name = 'Sulfur', input = { {'HeavyOil', 150}, {'Water', 250}, }, output = { {'Sulfur', 1}, }, ticks = 200, tier = 4, }, {..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'HeavyOilPyrolysis',
         name = 'HeavyOilPyrolysis',
        machine = 'PyrolysisUnit',
         input = {
         input = {
             {'HeavyOil', 1000},
             {'HeavyOil', 1000},
Line 14: Line 15:
     {
     {
         name = 'Sulfur',
         name = 'Sulfur',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'HeavyOil', 150},
             {'HeavyOil', 150},
Line 26: Line 28:
     {
     {
         name = 'CarbonPrecursor',
         name = 'CarbonPrecursor',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'HeavyOil', 1000},
             {'HeavyOil', 1000},
Line 37: Line 40:
     {
     {
         name = 'HeavyOil',
         name = 'HeavyOil',
        machine = 'FluidFurnace',
         input = {
         input = {
             {'HeavyOil', 100},
             {'HeavyOil', 100},

Latest revision as of 10:33, 30 October 2025

Documentation for this module may be created at Module:Data/HeavyOil/InInput/doc

return {
    {
        name = 'HeavyOilPyrolysis',
        machine = 'PyrolysisUnit',
        input = {
            {'HeavyOil', 1000},
        },
        output = {
            {'ProducerGas', 1300},
            {'Ash', 2},
        },
        ticks = 200,
        tier = 3,
    },
    {
        name = 'Sulfur',
        machine = 'IndustrialChemReactor',
        input = {
            {'HeavyOil', 150},
            {'Water', 250},
        },
        output = {
            {'Sulfur', 1},
        },
        ticks = 200,
        tier = 4,
    },
    {
        name = 'CarbonPrecursor',
        machine = 'IndustrialChemReactor',
        input = {
            {'HeavyOil', 1000},
            {'SulfuricAcid', 100},
        },
        output = {
            {'CarbonPrecursor', 1000},
        },
        ticks = 200,
    },
    {
        name = 'HeavyOil',
        machine = 'FluidFurnace',
        input = {
            {'HeavyOil', 100},
        },
        output = {
        },
        ticks = 2000.0,
    },
}