Module:Data/ProducerGas/InInput

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