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
 
Line 2: Line 2:
     {
     {
         name = 'Logs',
         name = 'Logs',
         ingredients = {
         input = {
             {'Water', 1000},
             {'Water', 1000},
         },
         },
         results = {
         output = {
             {'Log', 15},
             {'Log', 15},
         },
         },
         time = 1200,
         ticks = 1200,
     },
     },
     {
     {
         name = 'Pumpkin',
         name = 'Pumpkin',
         ingredients = {
         input = {
             {'Water', 1000},
             {'Water', 1000},
         },
         },
         results = {
         output = {
             {'Pumpkin', 15},
             {'Pumpkin', 15},
         },
         },
         time = 1200,
         ticks = 1200,
     },
     },
     {
     {
         name = 'Grass',
         name = 'Grass',
         ingredients = {
         input = {
             {'Water', 1000},
             {'Water', 1000},
             {'DirtSurface', 15},
             {'DirtSurface', 15},
         },
         },
         results = {
         output = {
             {'GrassSurface', 15},
             {'GrassSurface', 15},
         },
         },
         time = 1200,
         ticks = 1200,
     },
     },
     {
     {
         name = 'Rapeseed',
         name = 'Rapeseed',
         ingredients = {
         input = {
             {'Water', 1000},
             {'Water', 1000},
         },
         },
         results = {
         output = {
             {'Rapeseed', 15},
             {'Rapeseed', 15},
         },
         },
         time = 1200,
         ticks = 1200,
     },
     },
}
}

Latest revision as of 12:37, 31 July 2025

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

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