Module:Data/Diesel/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'Diesel', input = { {'Diesel', 1000}, }, output = { }, ticks = 112.5, tier = 4, }, { name = 'HighCetaneDiesel', input = { {'Diesel', 900}, {'NitricAcid', 100}, }, output = { {'HighCetaneDiesel', 1000}, }, ticks = 300, tier = 5, }, { name = 'Diesel', input = {..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'Diesel',
         name = 'Diesel',
        machine = 'CombustionEngine',
         input = {
         input = {
             {'Diesel', 1000},
             {'Diesel', 1000},
Line 12: Line 13:
     {
     {
         name = 'HighCetaneDiesel',
         name = 'HighCetaneDiesel',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'Diesel', 900},
             {'Diesel', 900},
Line 24: Line 26:
     {
     {
         name = 'Diesel',
         name = 'Diesel',
        machine = 'FluidFurnace',
         input = {
         input = {
             {'Diesel', 100},
             {'Diesel', 100},

Latest revision as of 10:33, 30 October 2025

Documentation for this module may be created at Module:Data/Diesel/InInput/doc

return {
    {
        name = 'Diesel',
        machine = 'CombustionEngine',
        input = {
            {'Diesel', 1000},
        },
        output = {
        },
        ticks = 112.5,
        tier = 4,
    },
    {
        name = 'HighCetaneDiesel',
        machine = 'IndustrialChemReactor',
        input = {
            {'Diesel', 900},
            {'NitricAcid', 100},
        },
        output = {
            {'HighCetaneDiesel', 1000},
        },
        ticks = 300,
        tier = 5,
    },
    {
        name = 'Diesel',
        machine = 'FluidFurnace',
        input = {
            {'Diesel', 100},
        },
        output = {
        },
        ticks = 9000.0,
    },
}