Module:Data/IronDust/InInput

From Evospace
Revision as of 10:32, 30 October 2025 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/IronDust/InInput/doc

return {
    {
        name = 'IronDustSmelting',
        machine = 'BlastFurnace',
        input = {
            {'Coke', 10},
            {'IronDust', 10},
        },
        output = {
            {'SteelPlate', 10},
        },
        ticks = 2000,
    },
    {
        name = 'IronPlate',
        machine = 'ArcSmelter',
        input = {
            {'IronDust', 10},
        },
        output = {
            {'IronPlate', 10},
        },
        ticks = 100,
        tier = 2,
    },
    {
        name = 'SSCraft',
        machine = 'Mixer',
        input = {
            {'IronDust', 4},
            {'ChromiumDust', 1},
        },
        output = {
            {'StainlessSteelDust', 4},
        },
        ticks = 400,
    },
    {
        name = 'Steel',
        machine = 'IndustrialSmelter',
        input = {
            {'IronDust', 10},
            {'CoalDust', 5},
            {'Oxygen', 1000},
        },
        output = {
            {'SteelPlate', 10},
        },
        ticks = 200,
    },
    {
        name = 'IronPlate',
        machine = 'Smelter',
        input = {
            {'IronDust', 1},
        },
        output = {
            {'IronPlate', 1},
        },
        ticks = 100,
    },
}