Module:Data/Oxygen/InInput

From Evospace
Revision as of 20:06, 31 July 2025 by Evospace (talk | contribs) (Created page with "return { { name = 'Steel', input = { {'IronDust', 10}, {'CoalDust', 5}, {'Oxygen', 1000}, }, output = { {'SteelPlate', 10}, }, ticks = 200, }, { name = 'CarbonMonoxide', input = { {'CoalDust', 1}, {'Oxygen', 500}, }, output = { {'CarbonMonoxide', 250}, }, ticks = 100, }, {...")
(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/Oxygen/InInput/doc

return {
    {
        name = 'Steel',
        input = {
            {'IronDust', 10},
            {'CoalDust', 5},
            {'Oxygen', 1000},
        },
        output = {
            {'SteelPlate', 10},
        },
        ticks = 200,
    },
    {
        name = 'CarbonMonoxide',
        input = {
            {'CoalDust', 1},
            {'Oxygen', 500},
        },
        output = {
            {'CarbonMonoxide', 250},
        },
        ticks = 100,
    },
    {
        name = 'NitricAcid',
        input = {
            {'Oxygen', 250},
            {'Ammonia', 750},
        },
        output = {
            {'NitricAcid', 1000},
        },
        ticks = 150,
    },
}