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 difference)

Latest revision as of 20:06, 31 July 2025

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

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,
    },
    {
        name = 'CarbonPrecursor',
        input = {
            {'HeavyOil', 1000},
            {'SulfuricAcid', 100},
        },
        output = {
            {'CarbonPrecursor', 1000},
        },
        ticks = 200,
    },
    {
        name = 'HeavyOil',
        input = {
            {'HeavyOil', 100},
        },
        output = {
        },
        ticks = 2000.0,
    },
}