Module:IndustrialSmelterRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'Steel', ingredients = { {'IronDust', 10}, {'CoalDust', 5}, {'Oxygen', 1000}, }, results = { {'SteelPlate', 10}, }, time = 200, }, { name = 'RawHotMercury', ingredients = { {'CinnabarDust', 10}, }, results = { {'HotMercury', 1000}, }, time = 200, }, { name = 'S..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'Steel',
         name = 'Steel',
         ingredients = {
         input = {
             {'IronDust', 10},
             {'IronDust', 10},
             {'CoalDust', 5},
             {'CoalDust', 5},
             {'Oxygen', 1000},
             {'Oxygen', 1000},
         },
         },
         results = {
         output = {
             {'SteelPlate', 10},
             {'SteelPlate', 10},
         },
         },
         time = 200,
         ticks = 200,
     },
     },
     {
     {
         name = 'RawHotMercury',
         name = 'RawHotMercury',
         ingredients = {
         input = {
             {'CinnabarDust', 10},
             {'CinnabarDust', 10},
         },
         },
         results = {
         output = {
             {'HotMercury', 1000},
             {'HotMercury', 1000},
         },
         },
         time = 200,
         ticks = 200,
     },
     },
     {
     {
         name = 'SiliconMonocrystal',
         name = 'SiliconMonocrystal',
         ingredients = {
         input = {
             {'Silicon', 16},
             {'Silicon', 16},
             {'Mercury', 1000},
             {'Mercury', 1000},
         },
         },
         results = {
         output = {
             {'SiliconMonocrystal', 1},
             {'SiliconMonocrystal', 1},
             {'HotMercury', 1000},
             {'HotMercury', 1000},
         },
         },
         time = 2000,
         ticks = 2000,
     },
     },
     {
     {
         name = 'DopedSiliconMonocrystal',
         name = 'DopedSiliconMonocrystal',
         ingredients = {
         input = {
             {'Silicon', 16},
             {'Silicon', 16},
             {'PlatinumDust', 1},
             {'PlatinumDust', 1},
             {'Mercury', 1000},
             {'Mercury', 1000},
         },
         },
         results = {
         output = {
             {'DopedSiliconMonocrystal', 1},
             {'DopedSiliconMonocrystal', 1},
             {'HotMercury', 1000},
             {'HotMercury', 1000},
         },
         },
         time = 3000,
         ticks = 3000,
     },
     },
     {
     {
         name = 'TantalumSludge',
         name = 'TantalumSludge',
         ingredients = {
         input = {
             {'TantalumSludge', 2},
             {'TantalumSludge', 2},
             {'AluminiumDust', 1},
             {'AluminiumDust', 1},
             {'Mercury', 1000},
             {'Mercury', 1000},
         },
         },
         results = {
         output = {
             {'TantalumPlate', 1},
             {'TantalumPlate', 1},
             {'HotMercury', 1000},
             {'HotMercury', 1000},
         },
         },
         time = 200,
         ticks = 200,
         tier = 5,
         tier = 5,
     },
     },
     {
     {
         name = 'SpongeToPlate',
         name = 'SpongeToPlate',
         ingredients = {
         input = {
             {'TitaniumSponge', 1},
             {'TitaniumSponge', 1},
             {'Mercury', 1000},
             {'Mercury', 1000},
         },
         },
         results = {
         output = {
             {'TitaniumPlate', 1},
             {'TitaniumPlate', 1},
             {'HotMercury', 1000},
             {'HotMercury', 1000},
         },
         },
         time = 400,
         ticks = 400,
         tier = 5,
         tier = 5,
     },
     },
     {
     {
         name = 'TitaniumDust',
         name = 'TitaniumDust',
         ingredients = {
         input = {
             {'TitaniumDust', 1},
             {'TitaniumDust', 1},
             {'Mercury', 300},
             {'Mercury', 300},
         },
         },
         results = {
         output = {
             {'TitaniumPlate', 1},
             {'TitaniumPlate', 1},
             {'HotMercury', 300},
             {'HotMercury', 300},
         },
         },
         time = 200,
         ticks = 200,
         tier = 5,
         tier = 5,
     },
     },
     {
     {
         name = 'YttriumDust',
         name = 'YttriumDust',
         ingredients = {
         input = {
             {'YttriumDust', 1},
             {'YttriumDust', 1},
             {'Mercury', 300},
             {'Mercury', 300},
         },
         },
         results = {
         output = {
             {'YttriumPlate', 1},
             {'YttriumPlate', 1},
             {'HotMercury', 300},
             {'HotMercury', 300},
         },
         },
         time = 200,
         ticks = 200,
         tier = 5,
         tier = 5,
     },
     },
     {
     {
         name = 'TantalumDust',
         name = 'TantalumDust',
         ingredients = {
         input = {
             {'TantalumDust', 1},
             {'TantalumDust', 1},
             {'Mercury', 300},
             {'Mercury', 300},
         },
         },
         results = {
         output = {
             {'TantalumPlate', 1},
             {'TantalumPlate', 1},
             {'HotMercury', 300},
             {'HotMercury', 300},
         },
         },
         time = 200,
         ticks = 200,
         tier = 5,
         tier = 5,
     },
     },
}
}

Latest revision as of 12:37, 31 July 2025

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