Module:FermenterRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'Rapseed', ingredients = { {'Rapeseed', 10}, }, results = { {'RapeseedOil', 800}, }, time = 200, }, { name = 'MethaneFromBiomass', ingredients = { {'Biomass', 500}, }, results = { {'Methane', 750}, {'FermentedBiomass', 500}, }, time = 200, }, { name = 'MethaneFromPumpkin',..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'Rapseed',
         name = 'Rapseed',
         ingredients = {
         input = {
             {'Rapeseed', 10},
             {'Rapeseed', 10},
         },
         },
         results = {
         output = {
             {'RapeseedOil', 800},
             {'RapeseedOil', 800},
         },
         },
         time = 200,
         ticks = 200,
     },
     },
     {
     {
         name = 'MethaneFromBiomass',
         name = 'MethaneFromBiomass',
         ingredients = {
         input = {
             {'Biomass', 500},
             {'Biomass', 500},
         },
         },
         results = {
         output = {
             {'Methane', 750},
             {'Methane', 750},
             {'FermentedBiomass', 500},
             {'FermentedBiomass', 500},
         },
         },
         time = 200,
         ticks = 200,
     },
     },
     {
     {
         name = 'MethaneFromPumpkin',
         name = 'MethaneFromPumpkin',
         ingredients = {
         input = {
             {'Pumpkin', 1},
             {'Pumpkin', 1},
         },
         },
         results = {
         output = {
             {'Methane', 300},
             {'Methane', 300},
         },
         },
         time = 200,
         ticks = 200,
     },
     },
}
}

Latest revision as of 12:37, 31 July 2025

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

return {
    {
        name = 'Rapseed',
        input = {
            {'Rapeseed', 10},
        },
        output = {
            {'RapeseedOil', 800},
        },
        ticks = 200,
    },
    {
        name = 'MethaneFromBiomass',
        input = {
            {'Biomass', 500},
        },
        output = {
            {'Methane', 750},
            {'FermentedBiomass', 500},
        },
        ticks = 200,
    },
    {
        name = 'MethaneFromPumpkin',
        input = {
            {'Pumpkin', 1},
        },
        output = {
            {'Methane', 300},
        },
        ticks = 200,
    },
}