Module:Data/GoldPlate/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'GoldPlate', input = { {'GoldDust', 10}, }, output = { {'GoldPlate', 10}, }, ticks = 100, tier = 2, }, { name = 'GoldPlate', input = { {'GoldDust', 1}, }, output = { {'GoldPlate', 1}, }, ticks = 100, }, }"
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'GoldPlate',
         name = 'GoldPlate',
        machine = 'ArcSmelter',
         input = {
         input = {
             {'GoldDust', 10},
             {'GoldDust', 10},
Line 13: Line 14:
     {
     {
         name = 'GoldPlate',
         name = 'GoldPlate',
        machine = 'Smelter',
         input = {
         input = {
             {'GoldDust', 1},
             {'GoldDust', 1},

Latest revision as of 10:36, 30 October 2025

Documentation for this module may be created at Module:Data/GoldPlate/InOutput/doc

return {
    {
        name = 'GoldPlate',
        machine = 'ArcSmelter',
        input = {
            {'GoldDust', 10},
        },
        output = {
            {'GoldPlate', 10},
        },
        ticks = 100,
        tier = 2,
    },
    {
        name = 'GoldPlate',
        machine = 'Smelter',
        input = {
            {'GoldDust', 1},
        },
        output = {
            {'GoldPlate', 1},
        },
        ticks = 100,
    },
}