Module:Data/HeavyOil/InInput

From Evospace
Revision as of 20:06, 31 July 2025 by Evospace (talk | contribs) (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, }, {...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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