Module:Data/RocketFuel/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 4: Line 4:
         machine = 'IndustrialChemReactor',
         machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'Chlorine', 1000},
             {'HydrocarbonBlend', 6000},
             {'Ammonia', 1000},
             {'OxidizerBlend', 2000},
            {'Ethanol', 2000},
            {'Gasoline', 4000},
            {'Catalyst', 1},
         },
         },
         output = {
         output = {
Line 14: Line 11:
         },
         },
         ticks = 600,
         ticks = 600,
         tier = 4,
         tier = 6,
    },
    {
        name = 'RocketFuel2',
        machine = 'IndustrialChemReactor',
        input = {
            {'Chlorine', 1000},
            {'Ammonia', 1000},
            {'Ethanol', 2000},
            {'Gasoline', 3000},
            {'UltimateCatalyst', 1},
        },
        output = {
            {'RocketFuel', 8000},
        },
        ticks = 600,
        tier = 7,
     },
     },
}
}

Latest revision as of 15:50, 24 August 2026

Documentation for this module may be created at Module:Data/RocketFuel/InOutput/doc

return {
    {
        name = 'RocketFuel',
        machine = 'IndustrialChemReactor',
        input = {
            {'HydrocarbonBlend', 6000},
            {'OxidizerBlend', 2000},
        },
        output = {
            {'RocketFuel', 6000},
        },
        ticks = 600,
        tier = 6,
    },
}