Module:SmelterRecipeDictionary

From Evospace
Revision as of 12:22, 31 July 2025 by Evospace (talk | contribs) (Replaced content with "return { { name = 'CopperPlate', ingredients = { {'CopperDust', 1}, }, results = { {'CopperPlate', 1}, }, time = 100, }, { name = 'GoldPlate', ingredients = { {'GoldDust', 1}, }, results = { {'GoldPlate', 1}, }, time = 100, }, { name = 'IronPlate', ingredients = { {'IronDust', 1...")
Jump to navigation Jump to search

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

return {
    {
        name = 'CopperPlate',
        ingredients = {
            {'CopperDust', 1},
        },
        results = {
            {'CopperPlate', 1},
        },
        time = 100,
    },
    {
        name = 'GoldPlate',
        ingredients = {
            {'GoldDust', 1},
        },
        results = {
            {'GoldPlate', 1},
        },
        time = 100,
    },
    {
        name = 'IronPlate',
        ingredients = {
            {'IronDust', 1},
        },
        results = {
            {'IronPlate', 1},
        },
        time = 100,
    },
}