Module:Data/GravelSurface/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'StoneToGravel', input = { {'StoneSurface', 1}, }, output = { {'GravelSurface', 1}, }, ticks = 100, tier = 1, }, { name = 'GravelSurface', input = { {'StoneSurface', 1}, }, output = { {'GravelSurface', 1}, }, ticks = 20, }, }"
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'StoneToGravel',
         name = 'StoneToGravel',
        machine = 'AutomaticHammer',
         input = {
         input = {
             {'StoneSurface', 1},
             {'StoneSurface', 1},
Line 13: Line 14:
     {
     {
         name = 'GravelSurface',
         name = 'GravelSurface',
        machine = 'Hand',
         input = {
         input = {
             {'StoneSurface', 1},
             {'StoneSurface', 1},

Latest revision as of 10:36, 30 October 2025

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

return {
    {
        name = 'StoneToGravel',
        machine = 'AutomaticHammer',
        input = {
            {'StoneSurface', 1},
        },
        output = {
            {'GravelSurface', 1},
        },
        ticks = 100,
        tier = 1,
    },
    {
        name = 'GravelSurface',
        machine = 'Hand',
        input = {
            {'StoneSurface', 1},
        },
        output = {
            {'GravelSurface', 1},
        },
        ticks = 20,
    },
}