Module:SmelterRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
Replaced content with "return { { name = 'CopperPlate', input = { {'CopperDust', 1}, }, output = { {'CopperPlate', 1}, }, ticks = 100, }, { name = 'GoldPlate', input = { {'GoldDust', 1}, }, output = { {'GoldPlate', 1}, }, ticks = 100, }, { name = 'IronPlate', input = { {'IronDust', 1}, },..."
Tags: Replaced Reverted
No edit summary
Tags: Manual revert Reverted
Line 1: Line 1:
return {
return {
     {
     {
         name = 'CopperPlate',
         name = 'Glass',
         input = {
         input = {
             {'CopperDust', 1},
             {'SandSurface', 1},
         },
         },
         output = {
         output = {
             {'CopperPlate', 1},
             {'Glass', 1},
        },
        ticks = 100,
    },
    {
        name = 'GoldPlate',
        input = {
            {'GoldDust', 1},
        },
        output = {
            {'GoldPlate', 1},
        },
        ticks = 100,
    },
    {
        name = 'IronPlate',
        input = {
            {'IronDust', 1},
        },
        output = {
            {'IronPlate', 1},
         },
         },
         ticks = 100,
         ticks = 100,
     },
     },
}
}

Revision as of 13:29, 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,
    },
}