Module:CombustionEngineRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'HighCetaneDiesel',
         name = 'HighCetaneDiesel',
        machine = 'CombustionEngine',
         input = {
         input = {
             {'HighCetaneDiesel', 1000},
             {'HighCetaneDiesel', 1000},
Line 11: Line 12:
     },
     },
     {
     {
         name = 'Diesel',
         name = 'Gasoline',
        machine = 'CombustionEngine',
         input = {
         input = {
             {'Diesel', 1000},
             {'Gasoline', 1000},
         },
         },
         output = {
         output = {
         },
         },
         ticks = 112.5,
         ticks = 75.0,
         tier = 4,
         tier = 4,
     },
     },
     {
     {
         name = 'Gasoline',
         name = 'Superfuel',
        machine = 'CombustionEngine',
         input = {
         input = {
             {'Gasoline', 1000},
             {'Superfuel', 1000},
         },
         },
         output = {
         output = {
         },
         },
         ticks = 75.0,
         ticks = 262.5,
         tier = 4,
         tier = 4,
     },
     },
     {
     {
         name = 'Superfuel',
         name = 'Diesel',
        machine = 'CombustionEngine',
         input = {
         input = {
             {'Superfuel', 1000},
             {'Diesel', 1000},
         },
         },
         output = {
         output = {
         },
         },
         ticks = 262.5,
         ticks = 112.5,
         tier = 4,
         tier = 4,
     },
     },
}
}

Latest revision as of 23:01, 27 January 2026

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

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