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 |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
return { | return { | ||
{ | { | ||
name = ' | name = 'HighCetaneDiesel', | ||
machine = 'CombustionEngine', | |||
{' | input = { | ||
{'HighCetaneDiesel', 1000}, | |||
}, | }, | ||
output = { | |||
}, | }, | ||
ticks = 187.5, | |||
tier = 4, | tier = 4, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Gasoline', | ||
machine = 'CombustionEngine', | |||
{' | input = { | ||
{'Gasoline', 1000}, | |||
}, | }, | ||
output = { | |||
}, | }, | ||
ticks = 75.0, | |||
tier = 4, | tier = 4, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Superfuel', | ||
machine = 'CombustionEngine', | |||
{' | input = { | ||
{'Superfuel', 1000}, | |||
}, | }, | ||
output = { | |||
}, | }, | ||
ticks = 262.5, | |||
tier = 4, | tier = 4, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Diesel', | ||
machine = 'CombustionEngine', | |||
{' | input = { | ||
{'Diesel', 1000}, | |||
}, | }, | ||
output = { | |||
}, | }, | ||
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,
},
}