Module:BlastFurnaceRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
Created page with "return { { name = 'IronDustSmelting', ingredients = { {'Coke', 10}, {'IronDust', 10}, }, results = { {'SteelPlate', 10}, }, time = 2000, }, { name = 'IronPlateSmelting', ingredients = { {'Coke', 10}, {'IronPlate', 10}, }, results = { {'SteelPlate', 10}, }, time = 2000, }, }" |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 2: | Line 2: | ||
{ | { | ||
name = 'IronDustSmelting', | name = 'IronDustSmelting', | ||
machine = 'BlastFurnace', | |||
input = { | |||
{'Coke', 10}, | {'Coke', 10}, | ||
{'IronDust', 10}, | {'IronDust', 10}, | ||
}, | }, | ||
output = { | |||
{'SteelPlate', 10}, | {'SteelPlate', 10}, | ||
}, | }, | ||
ticks = 2000, | |||
}, | }, | ||
{ | { | ||
name = 'IronPlateSmelting', | name = 'IronPlateSmelting', | ||
machine = 'BlastFurnace', | |||
input = { | |||
{'Coke', 10}, | {'Coke', 10}, | ||
{'IronPlate', 10}, | {'IronPlate', 10}, | ||
}, | }, | ||
output = { | |||
{'SteelPlate', 10}, | {'SteelPlate', 10}, | ||
}, | }, | ||
ticks = 2000, | |||
}, | }, | ||
} | } | ||
Latest revision as of 23:01, 27 January 2026
Documentation for this module may be created at Module:BlastFurnaceRecipeDictionary/doc
return {
{
name = 'IronDustSmelting',
machine = 'BlastFurnace',
input = {
{'Coke', 10},
{'IronDust', 10},
},
output = {
{'SteelPlate', 10},
},
ticks = 2000,
},
{
name = 'IronPlateSmelting',
machine = 'BlastFurnace',
input = {
{'Coke', 10},
{'IronPlate', 10},
},
output = {
{'SteelPlate', 10},
},
ticks = 2000,
},
}