Module:FurnaceRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
return {
return {
     {
     {
         name = 'CoalDust',
         name = 'Peat',
         input = {
         input = {
             {'CoalDust', 1},
             {'Peat', 1},
         },
         },
         output = {
         output = {
         },
         },
         ticks = 720.0,
         ticks = 400.0,
     },
     },
     {
     {
         name = 'CoalOreDust',
         name = 'Coal',
         input = {
         input = {
             {'CoalOreDust', 1},
             {'Coal', 1},
         },
         },
         output = {
         output = {
         },
         },
         ticks = 640.0,
         ticks = 800.0,
     },
     },
     {
     {
         name = 'CoalOre',
         name = 'Coke',
         input = {
         input = {
             {'CoalOre', 1},
             {'Coke', 1},
         },
         },
         output = {
         output = {
         },
         },
         ticks = 720.0,
         ticks = 1200.0,
     },
     },
     {
     {
         name = 'CoalOreGravel',
         name = 'Organics',
         input = {
         input = {
             {'CoalOreGravel', 1},
             {'Organics', 1},
         },
         },
         output = {
         output = {
         },
         },
         ticks = 720.0,
         ticks = 60.0,
     },
     },
     {
     {
         name = 'CoalOreImpureGravel',
         name = 'Log',
         input = {
         input = {
             {'CoalOreImpureGravel', 1},
             {'Log', 1},
         },
         },
         output = {
         output = {
         },
         },
         ticks = 640.0,
         ticks = 500.0,
     },
     },
}
}

Revision as of 12:37, 31 July 2025

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

return {
    {
        name = 'Peat',
        input = {
            {'Peat', 1},
        },
        output = {
        },
        ticks = 400.0,
    },
    {
        name = 'Coal',
        input = {
            {'Coal', 1},
        },
        output = {
        },
        ticks = 800.0,
    },
    {
        name = 'Coke',
        input = {
            {'Coke', 1},
        },
        output = {
        },
        ticks = 1200.0,
    },
    {
        name = 'Organics',
        input = {
            {'Organics', 1},
        },
        output = {
        },
        ticks = 60.0,
    },
    {
        name = 'Log',
        input = {
            {'Log', 1},
        },
        output = {
        },
        ticks = 500.0,
    },
}