Module:CombustionEngineRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
return { | return { | ||
{ | { | ||
name = ' | name = 'Superfuel', | ||
machine = 'CombustionEngine', | machine = 'CombustionEngine', | ||
input = { | input = { | ||
{' | {'Superfuel', 1000}, | ||
}, | }, | ||
output = { | output = { | ||
}, | }, | ||
ticks = | ticks = 4200.0, | ||
}, | }, | ||
{ | { | ||
| Line 19: | Line 18: | ||
output = { | output = { | ||
}, | }, | ||
ticks = | ticks = 1200.0, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Diesel', | ||
machine = 'CombustionEngine', | machine = 'CombustionEngine', | ||
input = { | input = { | ||
{' | {'Diesel', 1000}, | ||
}, | }, | ||
output = { | output = { | ||
}, | }, | ||
ticks = | ticks = 1800.0, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'HighCetaneDiesel', | ||
machine = 'CombustionEngine', | machine = 'CombustionEngine', | ||
input = { | input = { | ||
{' | {'HighCetaneDiesel', 1000}, | ||
}, | }, | ||
output = { | output = { | ||
}, | }, | ||
ticks = | ticks = 3000.0, | ||
}, | }, | ||
} | } | ||
Latest revision as of 15:34, 24 August 2026
Documentation for this module may be created at Module:CombustionEngineRecipeDictionary/doc
return {
{
name = 'Superfuel',
machine = 'CombustionEngine',
input = {
{'Superfuel', 1000},
},
output = {
},
ticks = 4200.0,
},
{
name = 'Gasoline',
machine = 'CombustionEngine',
input = {
{'Gasoline', 1000},
},
output = {
},
ticks = 1200.0,
},
{
name = 'Diesel',
machine = 'CombustionEngine',
input = {
{'Diesel', 1000},
},
output = {
},
ticks = 1800.0,
},
{
name = 'HighCetaneDiesel',
machine = 'CombustionEngine',
input = {
{'HighCetaneDiesel', 1000},
},
output = {
},
ticks = 3000.0,
},
}