Module:FurnaceRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
return { | return { | ||
{ | { | ||
name = ' | name = 'Peat', | ||
input = { | input = { | ||
{' | {'Peat', 1}, | ||
}, | }, | ||
output = { | output = { | ||
}, | }, | ||
ticks = | ticks = 400.0, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Coal', | ||
input = { | input = { | ||
{' | {'Coal', 1}, | ||
}, | }, | ||
output = { | output = { | ||
}, | }, | ||
ticks = | ticks = 800.0, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Coke', | ||
input = { | input = { | ||
{' | {'Coke', 1}, | ||
}, | }, | ||
output = { | output = { | ||
}, | }, | ||
ticks = | ticks = 1200.0, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Organics', | ||
input = { | input = { | ||
{' | {'Organics', 1}, | ||
}, | }, | ||
output = { | output = { | ||
}, | }, | ||
ticks = | ticks = 60.0, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Log', | ||
input = { | input = { | ||
{' | {'Log', 1}, | ||
}, | }, | ||
output = { | output = { | ||
}, | }, | ||
ticks = | ticks = 500.0, | ||
}, | }, | ||
} | } |
Revision as of 12:37, 31 July 2025
Documentation for this module may be created at Module:FurnaceRecipeDictionary/doc
return {
{
name = 'Peat',
input = {
{'Peat', 1},
},
output = {
},
ticks = 400.0,
},
{
name = 'Coal',
input = {
{'Coal', 1},
},
output = {
},
ticks = 800.0,
},
{
name = 'Coke',
input = {
{'Coke', 1},
},
output = {
},
ticks = 1200.0,
},
{
name = 'Organics',
input = {
{'Organics', 1},
},
output = {
},
ticks = 60.0,
},
{
name = 'Log',
input = {
{'Log', 1},
},
output = {
},
ticks = 500.0,
},
}