Module:CombustionEngineRecipeDictionary: Difference between revisions
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 |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
return { | return { | ||
{ | { | ||
name = ' | name = 'Superfuel', | ||
machine = 'CombustionEngine', | |||
{' | input = { | ||
{'Superfuel', 1000}, | |||
}, | }, | ||
output = { | |||
}, | }, | ||
ticks = 4200.0, | |||
}, | }, | ||
{ | { | ||
name = ' | name = 'Gasoline', | ||
machine = 'CombustionEngine', | |||
{' | input = { | ||
{'Gasoline', 1000}, | |||
}, | }, | ||
output = { | |||
}, | }, | ||
ticks = 1200.0, | |||
}, | }, | ||
{ | { | ||
name = ' | name = 'Diesel', | ||
machine = 'CombustionEngine', | |||
{' | input = { | ||
{'Diesel', 1000}, | |||
}, | }, | ||
output = { | |||
}, | }, | ||
ticks = 1800.0, | |||
}, | }, | ||
{ | { | ||
name = 'HighCetaneDiesel', | name = 'HighCetaneDiesel', | ||
machine = 'CombustionEngine', | |||
input = { | |||
{'HighCetaneDiesel', 1000}, | {'HighCetaneDiesel', 1000}, | ||
}, | }, | ||
output = { | |||
}, | }, | ||
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,
},
}