Module:FurnaceRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
Created page with "return { { name = 'CoalDust', ingredients = { {'CoalDust', 1}, }, results = { }, time = 720.0, }, { name = 'CoalOreDust', ingredients = { {'CoalOreDust', 1}, }, results = { }, time = 640.0, }, { name = 'CoalOre', ingredients = { {'CoalOre', 1}, }, results = { }, time = 720.0..." |
No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
{ | { | ||
name = 'CoalDust', | name = 'CoalDust', | ||
input = { | |||
{'CoalDust', 1}, | {'CoalDust', 1}, | ||
}, | }, | ||
output = { | |||
}, | }, | ||
ticks = 720.0, | |||
}, | }, | ||
{ | { | ||
name = 'CoalOreDust', | name = 'CoalOreDust', | ||
input = { | |||
{'CoalOreDust', 1}, | {'CoalOreDust', 1}, | ||
}, | }, | ||
output = { | |||
}, | }, | ||
ticks = 640.0, | |||
}, | }, | ||
{ | { | ||
name = 'CoalOre', | name = 'CoalOre', | ||
input = { | |||
{'CoalOre', 1}, | {'CoalOre', 1}, | ||
}, | }, | ||
output = { | |||
}, | }, | ||
ticks = 720.0, | |||
}, | }, | ||
{ | { | ||
name = 'CoalOreGravel', | name = 'CoalOreGravel', | ||
input = { | |||
{'CoalOreGravel', 1}, | {'CoalOreGravel', 1}, | ||
}, | }, | ||
output = { | |||
}, | }, | ||
ticks = 720.0, | |||
}, | }, | ||
{ | { | ||
name = 'CoalOreImpureGravel', | name = 'CoalOreImpureGravel', | ||
input = { | |||
{'CoalOreImpureGravel', 1}, | {'CoalOreImpureGravel', 1}, | ||
}, | }, | ||
output = { | |||
}, | }, | ||
ticks = 640.0, | |||
}, | |||
{ | |||
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, | |||
}, | }, | ||
} | } |
Latest revision as of 13:34, 31 July 2025
Documentation for this module may be created at Module:FurnaceRecipeDictionary/doc
return {
{
name = 'CoalDust',
input = {
{'CoalDust', 1},
},
output = {
},
ticks = 720.0,
},
{
name = 'CoalOreDust',
input = {
{'CoalOreDust', 1},
},
output = {
},
ticks = 640.0,
},
{
name = 'CoalOre',
input = {
{'CoalOre', 1},
},
output = {
},
ticks = 720.0,
},
{
name = 'CoalOreGravel',
input = {
{'CoalOreGravel', 1},
},
output = {
},
ticks = 720.0,
},
{
name = 'CoalOreImpureGravel',
input = {
{'CoalOreImpureGravel', 1},
},
output = {
},
ticks = 640.0,
},
{
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,
},
}