Module:IndustrialBoilerRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'Boiling', ingredients = { {'Water', 2000}, }, results = { }, time = 200, }, }"
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'Boiling',
         name = 'Boiling',
         ingredients = {
         input = {
             {'Water', 2000},
             {'Water', 2000},
         },
         },
         results = {
         output = {
         },
         },
         time = 200,
         ticks = 200,
     },
     },
}
}

Latest revision as of 12:37, 31 July 2025

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

return {
    {
        name = 'Boiling',
        input = {
            {'Water', 2000},
        },
        output = {
        },
        ticks = 200,
    },
}