Module:Data/Coal/InInput

From Evospace
Revision as of 21:15, 27 January 2026 by Evospace (talk | contribs)
(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/Coal/InInput/doc

return {
    {
        name = 'CoalToCoke',
        machine = 'Oven',
        input = {
            {'Coal', 10},
        },
        output = {
            {'Coke', 10},
            {'Creosote', 500},
        },
        ticks = 600,
    },
    {
        name = 'Coal',
        machine = 'Macerator',
        input = {
            {'Coal', 1},
        },
        output = {
            {'CoalDust', 1},
        },
        ticks = 100,
        tier = 1,
    },
    {
        name = 'Coal',
        machine = 'PyrolysisUnit',
        input = {
            {'Coal', 1},
        },
        output = {
            {'Coke', 1},
            {'RawOil', 150},
            {'ProducerGas', 150},
        },
        ticks = 400,
        tier = 3,
    },
    {
        name = 'Coal',
        machine = 'Furnace',
        input = {
            {'Coal', 1},
        },
        output = {
        },
        ticks = 800.0,
    },
}