Module:IndustrialSmelterRecipeDictionary

From Evospace
Revision as of 12:37, 31 July 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:IndustrialSmelterRecipeDictionary/doc

return {
    {
        name = 'Steel',
        input = {
            {'IronDust', 10},
            {'CoalDust', 5},
            {'Oxygen', 1000},
        },
        output = {
            {'SteelPlate', 10},
        },
        ticks = 200,
    },
    {
        name = 'RawHotMercury',
        input = {
            {'CinnabarDust', 10},
        },
        output = {
            {'HotMercury', 1000},
        },
        ticks = 200,
    },
    {
        name = 'SiliconMonocrystal',
        input = {
            {'Silicon', 16},
            {'Mercury', 1000},
        },
        output = {
            {'SiliconMonocrystal', 1},
            {'HotMercury', 1000},
        },
        ticks = 2000,
    },
    {
        name = 'DopedSiliconMonocrystal',
        input = {
            {'Silicon', 16},
            {'PlatinumDust', 1},
            {'Mercury', 1000},
        },
        output = {
            {'DopedSiliconMonocrystal', 1},
            {'HotMercury', 1000},
        },
        ticks = 3000,
    },
    {
        name = 'TantalumSludge',
        input = {
            {'TantalumSludge', 2},
            {'AluminiumDust', 1},
            {'Mercury', 1000},
        },
        output = {
            {'TantalumPlate', 1},
            {'HotMercury', 1000},
        },
        ticks = 200,
        tier = 5,
    },
    {
        name = 'SpongeToPlate',
        input = {
            {'TitaniumSponge', 1},
            {'Mercury', 1000},
        },
        output = {
            {'TitaniumPlate', 1},
            {'HotMercury', 1000},
        },
        ticks = 400,
        tier = 5,
    },
    {
        name = 'TitaniumDust',
        input = {
            {'TitaniumDust', 1},
            {'Mercury', 300},
        },
        output = {
            {'TitaniumPlate', 1},
            {'HotMercury', 300},
        },
        ticks = 200,
        tier = 5,
    },
    {
        name = 'YttriumDust',
        input = {
            {'YttriumDust', 1},
            {'Mercury', 300},
        },
        output = {
            {'YttriumPlate', 1},
            {'HotMercury', 300},
        },
        ticks = 200,
        tier = 5,
    },
    {
        name = 'TantalumDust',
        input = {
            {'TantalumDust', 1},
            {'Mercury', 300},
        },
        output = {
            {'TantalumPlate', 1},
            {'HotMercury', 300},
        },
        ticks = 200,
        tier = 5,
    },
}