Module:AutomaticFarmRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
return {
return {
     {
     {
         name = 'Logs',
         name = 'Log',
        machine = 'AutomaticFarm',
         input = {
         input = {
             {'Water', 1000},
             {'Water', 1000},
Line 12: Line 13:
     {
     {
         name = 'Pumpkin',
         name = 'Pumpkin',
        machine = 'AutomaticFarm',
         input = {
         input = {
             {'Water', 1000},
             {'Water', 1000},
Line 21: Line 23:
     },
     },
     {
     {
         name = 'Grass',
         name = 'GrassSurface',
        machine = 'AutomaticFarm',
         input = {
         input = {
             {'Water', 1000},
             {'Water', 1000},
Line 33: Line 36:
     {
     {
         name = 'Rapeseed',
         name = 'Rapeseed',
        machine = 'AutomaticFarm',
         input = {
         input = {
             {'Water', 1000},
             {'Water', 1000},

Latest revision as of 22:11, 10 April 2026

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

return {
    {
        name = 'Log',
        machine = 'AutomaticFarm',
        input = {
            {'Water', 1000},
        },
        output = {
            {'Log', 15},
        },
        ticks = 1200,
    },
    {
        name = 'Pumpkin',
        machine = 'AutomaticFarm',
        input = {
            {'Water', 1000},
        },
        output = {
            {'Pumpkin', 15},
        },
        ticks = 1200,
    },
    {
        name = 'GrassSurface',
        machine = 'AutomaticFarm',
        input = {
            {'Water', 1000},
            {'DirtSurface', 15},
        },
        output = {
            {'GrassSurface', 15},
        },
        ticks = 1200,
    },
    {
        name = 'Rapeseed',
        machine = 'AutomaticFarm',
        input = {
            {'Water', 1000},
        },
        output = {
            {'Rapeseed', 15},
        },
        ticks = 1200,
    },
}