Module:BlastFurnaceRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'IronDustSmelting', ingredients = { {'Coke', 10}, {'IronDust', 10}, }, results = { {'SteelPlate', 10}, }, time = 2000, }, { name = 'IronPlateSmelting', ingredients = { {'Coke', 10}, {'IronPlate', 10}, }, results = { {'SteelPlate', 10}, }, time = 2000, }, }"
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'IronDustSmelting',
         name = 'IronDustSmelting',
         ingredients = {
         input = {
             {'Coke', 10},
             {'Coke', 10},
             {'IronDust', 10},
             {'IronDust', 10},
         },
         },
         results = {
         output = {
             {'SteelPlate', 10},
             {'SteelPlate', 10},
         },
         },
         time = 2000,
         ticks = 2000,
     },
     },
     {
     {
         name = 'IronPlateSmelting',
         name = 'IronPlateSmelting',
         ingredients = {
         input = {
             {'Coke', 10},
             {'Coke', 10},
             {'IronPlate', 10},
             {'IronPlate', 10},
         },
         },
         results = {
         output = {
             {'SteelPlate', 10},
             {'SteelPlate', 10},
         },
         },
         time = 2000,
         ticks = 2000,
     },
     },
}
}

Latest revision as of 12:37, 31 July 2025

Documentation for this module may be created at Module:BlastFurnaceRecipeDictionary/doc

return {
    {
        name = 'IronDustSmelting',
        input = {
            {'Coke', 10},
            {'IronDust', 10},
        },
        output = {
            {'SteelPlate', 10},
        },
        ticks = 2000,
    },
    {
        name = 'IronPlateSmelting',
        input = {
            {'Coke', 10},
            {'IronPlate', 10},
        },
        output = {
            {'SteelPlate', 10},
        },
        ticks = 2000,
    },
}