Module:Data/Oxygen/InInput: Difference between revisions
Jump to navigation
Jump to search
Created page with "return { { name = 'Steel', input = { {'IronDust', 10}, {'CoalDust', 5}, {'Oxygen', 1000}, }, output = { {'SteelPlate', 10}, }, ticks = 200, }, { name = 'CarbonMonoxide', input = { {'CoalDust', 1}, {'Oxygen', 500}, }, output = { {'CarbonMonoxide', 250}, }, ticks = 100, }, {..." |
No edit summary |
||
| Line 2: | Line 2: | ||
{ | { | ||
name = 'Steel', | name = 'Steel', | ||
machine = 'IndustrialSmelter', | |||
input = { | input = { | ||
{'IronDust', 10}, | {'IronDust', 10}, | ||
| Line 14: | Line 15: | ||
{ | { | ||
name = 'CarbonMonoxide', | name = 'CarbonMonoxide', | ||
machine = 'IndustrialChemReactor', | |||
input = { | input = { | ||
{'CoalDust', 1}, | {'CoalDust', 1}, | ||
| Line 25: | Line 27: | ||
{ | { | ||
name = 'NitricAcid', | name = 'NitricAcid', | ||
machine = 'IndustrialChemReactor', | |||
input = { | input = { | ||
{'Oxygen', 250}, | {'Oxygen', 250}, | ||
Latest revision as of 10:33, 30 October 2025
Documentation for this module may be created at Module:Data/Oxygen/InInput/doc
return {
{
name = 'Steel',
machine = 'IndustrialSmelter',
input = {
{'IronDust', 10},
{'CoalDust', 5},
{'Oxygen', 1000},
},
output = {
{'SteelPlate', 10},
},
ticks = 200,
},
{
name = 'CarbonMonoxide',
machine = 'IndustrialChemReactor',
input = {
{'CoalDust', 1},
{'Oxygen', 500},
},
output = {
{'CarbonMonoxide', 250},
},
ticks = 100,
},
{
name = 'NitricAcid',
machine = 'IndustrialChemReactor',
input = {
{'Oxygen', 250},
{'Ammonia', 750},
},
output = {
{'NitricAcid', 1000},
},
ticks = 150,
},
}