Module:AutomaticFarmRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'Logs', ingredients = { {'Water', 1000}, }, results = { {'Log', 15}, }, time = 1200, }, { name = 'Pumpkin', ingredients = { {'Water', 1000}, }, results = { {'Pumpkin', 15}, }, time = 1200, }, { name = 'Grass', ingredients = { {'Water', 1000}, {'DirtSurf..."
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
return {
return {
     {
     {
         name = 'Logs',
         name = 'Log',
         ingredients = {
         machine = 'AutomaticFarm',
        input = {
             {'Water', 1000},
             {'Water', 1000},
         },
         },
         results = {
         output = {
             {'Log', 15},
             {'Log', 15},
         },
         },
         time = 1200,
         ticks = 1200,
     },
     },
     {
     {
         name = 'Pumpkin',
         name = 'Pumpkin',
         ingredients = {
         machine = 'AutomaticFarm',
        input = {
             {'Water', 1000},
             {'Water', 1000},
         },
         },
         results = {
         output = {
             {'Pumpkin', 15},
             {'Pumpkin', 15},
         },
         },
         time = 1200,
         ticks = 1200,
     },
     },
     {
     {
         name = 'Grass',
         name = 'GrassSurface',
         ingredients = {
         machine = 'AutomaticFarm',
        input = {
             {'Water', 1000},
             {'Water', 1000},
             {'DirtSurface', 15},
             {'DirtSurface', 15},
         },
         },
         results = {
         output = {
             {'GrassSurface', 15},
             {'GrassSurface', 15},
         },
         },
         time = 1200,
         ticks = 1200,
     },
     },
     {
     {
         name = 'Rapeseed',
         name = 'Rapeseed',
         ingredients = {
         machine = 'AutomaticFarm',
        input = {
             {'Water', 1000},
             {'Water', 1000},
         },
         },
         results = {
         output = {
             {'Rapeseed', 15},
             {'Rapeseed', 15},
         },
         },
         time = 1200,
         ticks = 1200,
     },
     },
}
}

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,
    },
}