Module:CombustionEngineRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'Diesel', ingredients = { {'Diesel', 1000}, }, results = { }, time = 112.5, tier = 4, }, { name = 'Superfuel', ingredients = { {'Superfuel', 1000}, }, results = { }, time = 262.5, tier = 4, }, { name = 'Gasoline', ingredients = { {'Gasoline', 1000}, }, resu..."
 
No edit summary
Line 2: Line 2:
     {
     {
         name = 'Diesel',
         name = 'Diesel',
         ingredients = {
         input = {
             {'Diesel', 1000},
             {'Diesel', 1000},
         },
         },
         results = {
         output = {
         },
         },
         time = 112.5,
         ticks = 112.5,
         tier = 4,
         tier = 4,
     },
     },
     {
     {
         name = 'Superfuel',
         name = 'Superfuel',
         ingredients = {
         input = {
             {'Superfuel', 1000},
             {'Superfuel', 1000},
         },
         },
         results = {
         output = {
         },
         },
         time = 262.5,
         ticks = 262.5,
         tier = 4,
         tier = 4,
     },
     },
     {
     {
         name = 'Gasoline',
         name = 'Gasoline',
         ingredients = {
         input = {
             {'Gasoline', 1000},
             {'Gasoline', 1000},
         },
         },
         results = {
         output = {
         },
         },
         time = 75.0,
         ticks = 75.0,
         tier = 4,
         tier = 4,
     },
     },
     {
     {
         name = 'HighCetaneDiesel',
         name = 'HighCetaneDiesel',
         ingredients = {
         input = {
             {'HighCetaneDiesel', 1000},
             {'HighCetaneDiesel', 1000},
         },
         },
         results = {
         output = {
         },
         },
         time = 187.5,
         ticks = 187.5,
         tier = 4,
         tier = 4,
     },
     },
}
}

Revision as of 12:37, 31 July 2025

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

return {
    {
        name = 'Diesel',
        input = {
            {'Diesel', 1000},
        },
        output = {
        },
        ticks = 112.5,
        tier = 4,
    },
    {
        name = 'Superfuel',
        input = {
            {'Superfuel', 1000},
        },
        output = {
        },
        ticks = 262.5,
        tier = 4,
    },
    {
        name = 'Gasoline',
        input = {
            {'Gasoline', 1000},
        },
        output = {
        },
        ticks = 75.0,
        tier = 4,
    },
    {
        name = 'HighCetaneDiesel',
        input = {
            {'HighCetaneDiesel', 1000},
        },
        output = {
        },
        ticks = 187.5,
        tier = 4,
    },
}