Module:SmelterRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
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..."
Tag: Replaced
No edit summary
Line 1: Line 1:
return {
return {
     {
     {
         name = 'CopperPlate',
         name = 'Glass',
         ingredients = {
         input = {
             {'CopperDust', 1},
             {'SandSurface', 1},
         },
         },
         results = {
         output = {
             {'CopperPlate', 1},
             {'Glass', 1},
         },
         },
         time = 100,
         ticks = 100,
    },
    {
        name = 'GoldPlate',
        ingredients = {
            {'GoldDust', 1},
        },
        results = {
            {'GoldPlate', 1},
        },
        time = 100,
    },
    {
        name = 'IronPlate',
        ingredients = {
            {'IronDust', 1},
        },
        results = {
            {'IronPlate', 1},
        },
        time = 100,
     },
     },
}
}

Revision as of 12:37, 31 July 2025

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

return {
    {
        name = 'Glass',
        input = {
            {'SandSurface', 1},
        },
        output = {
            {'Glass', 1},
        },
        ticks = 100,
    },
}