Module:BlastFurnaceRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'IronDustSmelting',
         name = 'IronDustSmelting',
        machine = 'BlastFurnace',
         input = {
         input = {
             {'Coke', 10},
             {'Coke', 10},
Line 13: Line 14:
     {
     {
         name = 'IronPlateSmelting',
         name = 'IronPlateSmelting',
        machine = 'BlastFurnace',
         input = {
         input = {
             {'Coke', 10},
             {'Coke', 10},

Latest revision as of 23:01, 27 January 2026

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

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