Module:Data/HotMercury/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 114: Line 114:
         input = {
         input = {
             {'HotNeutroniumPlate', 1},
             {'HotNeutroniumPlate', 1},
             {'Mercury', 2000},
             {'Mercury', 4000},
         },
         },
         output = {
         output = {
             {'NeutroniumPlate', 1},
             {'NeutroniumPlate', 1},
             {'HotMercury', 2000},
             {'HotMercury', 4000},
         },
         },
         ticks = 200,
         ticks = 400,
         tier = 6,
         tier = 6,
     },
     },
}
}

Latest revision as of 21:20, 27 January 2026

Documentation for this module may be created at Module:Data/HotMercury/InOutput/doc

return {
    {
        name = 'RawHotMercury',
        machine = 'IndustrialSmelter',
        input = {
            {'CinnabarDust', 10},
        },
        output = {
            {'HotMercury', 1000},
        },
        ticks = 200,
    },
    {
        name = 'SiliconMonocrystal',
        machine = 'IndustrialSmelter',
        input = {
            {'Silicon', 16},
            {'Mercury', 1000},
        },
        output = {
            {'SiliconMonocrystal', 1},
            {'HotMercury', 1000},
        },
        ticks = 2000,
    },
    {
        name = 'DopedSiliconMonocrystal',
        machine = 'IndustrialSmelter',
        input = {
            {'Silicon', 16},
            {'PlatinumDust', 1},
            {'Mercury', 1000},
        },
        output = {
            {'DopedSiliconMonocrystal', 1},
            {'HotMercury', 1000},
        },
        ticks = 3000,
    },
    {
        name = 'TantalumSludge',
        machine = 'IndustrialSmelter',
        input = {
            {'TantalumSludge', 2},
            {'AluminiumDust', 6},
            {'Mercury', 1000},
        },
        output = {
            {'TantalumPlate', 1},
            {'HotMercury', 1000},
        },
        ticks = 200,
        tier = 5,
    },
    {
        name = 'SpongeToPlate',
        machine = 'IndustrialSmelter',
        input = {
            {'TitaniumSponge', 1},
            {'Mercury', 1000},
        },
        output = {
            {'TitaniumPlate', 1},
            {'HotMercury', 1000},
        },
        ticks = 400,
        tier = 5,
    },
    {
        name = 'TitaniumDust',
        machine = 'IndustrialSmelter',
        input = {
            {'TitaniumDust', 1},
            {'Mercury', 300},
        },
        output = {
            {'TitaniumPlate', 1},
            {'HotMercury', 300},
        },
        ticks = 200,
        tier = 5,
    },
    {
        name = 'YttriumDust',
        machine = 'IndustrialSmelter',
        input = {
            {'YttriumDust', 1},
            {'Mercury', 300},
        },
        output = {
            {'YttriumPlate', 1},
            {'HotMercury', 300},
        },
        ticks = 200,
        tier = 5,
    },
    {
        name = 'TantalumDust',
        machine = 'IndustrialSmelter',
        input = {
            {'TantalumDust', 1},
            {'Mercury', 300},
        },
        output = {
            {'TantalumPlate', 1},
            {'HotMercury', 300},
        },
        ticks = 200,
        tier = 5,
    },
    {
        name = 'NeutroniumPlate',
        machine = 'IndustrialChemReactor',
        input = {
            {'HotNeutroniumPlate', 1},
            {'Mercury', 4000},
        },
        output = {
            {'NeutroniumPlate', 1},
            {'HotMercury', 4000},
        },
        ticks = 400,
        tier = 6,
    },
}