Module:Data/ProducerGas/InInput

From Evospace
Revision as of 20:07, 31 July 2025 by Evospace (talk | contribs) (Created page with "return { { name = 'SynthesisCell', input = { {'Cell', 1}, {'ProducerGas', 3000}, }, output = { {'SynthesisCell', 1}, }, ticks = 200, tier = 6, }, { name = 'Ethylene', input = { {'ProducerGas', 1000}, {'Catalyst', 1}, }, output = { {'Ethylene', 1000}, }, ticks = 200, }, {...")
(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/ProducerGas/InInput/doc

return {
    {
        name = 'SynthesisCell',
        input = {
            {'Cell', 1},
            {'ProducerGas', 3000},
        },
        output = {
            {'SynthesisCell', 1},
        },
        ticks = 200,
        tier = 6,
    },
    {
        name = 'Ethylene',
        input = {
            {'ProducerGas', 1000},
            {'Catalyst', 1},
        },
        output = {
            {'Ethylene', 1000},
        },
        ticks = 200,
    },
    {
        name = 'Hydrogen',
        input = {
            {'ProducerGas', 1000},
        },
        output = {
            {'Hydrogen', 750},
        },
        ticks = 200,
    },
    {
        name = 'ProducerGas',
        input = {
            {'ProducerGas', 1000},
        },
        output = {
        },
        ticks = 1000.0,
    },
}