Module:Data/Oxygen/InInput

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