Module:Data/IronDust/InInput: Difference between revisions
Jump to navigation
Jump to search
Created page with "return { { name = 'IronDustSmelting', input = { {'Coke', 10}, {'IronDust', 10}, }, output = { {'SteelPlate', 10}, }, ticks = 2000, }, { name = 'IronPlate', input = { {'IronDust', 10}, }, output = { {'IronPlate', 10}, }, ticks = 100, tier = 2, }, { name = 'SSCraft', input = {..." |
No edit summary |
||
| Line 2: | Line 2: | ||
{ | { | ||
name = 'IronDustSmelting', | name = 'IronDustSmelting', | ||
machine = 'BlastFurnace', | |||
input = { | input = { | ||
{'Coke', 10}, | {'Coke', 10}, | ||
| Line 13: | Line 14: | ||
{ | { | ||
name = 'IronPlate', | name = 'IronPlate', | ||
machine = 'ArcSmelter', | |||
input = { | input = { | ||
{'IronDust', 10}, | {'IronDust', 10}, | ||
| Line 24: | Line 26: | ||
{ | { | ||
name = 'SSCraft', | name = 'SSCraft', | ||
machine = 'Mixer', | |||
input = { | input = { | ||
{'IronDust', 4}, | {'IronDust', 4}, | ||
| Line 35: | Line 38: | ||
{ | { | ||
name = 'Steel', | name = 'Steel', | ||
machine = 'IndustrialSmelter', | |||
input = { | input = { | ||
{'IronDust', 10}, | {'IronDust', 10}, | ||
| Line 47: | Line 51: | ||
{ | { | ||
name = 'IronPlate', | name = 'IronPlate', | ||
machine = 'Smelter', | |||
input = { | input = { | ||
{'IronDust', 1}, | {'IronDust', 1}, | ||
Latest revision as of 10:32, 30 October 2025
Documentation for this module may be created at Module:Data/IronDust/InInput/doc
return {
{
name = 'IronDustSmelting',
machine = 'BlastFurnace',
input = {
{'Coke', 10},
{'IronDust', 10},
},
output = {
{'SteelPlate', 10},
},
ticks = 2000,
},
{
name = 'IronPlate',
machine = 'ArcSmelter',
input = {
{'IronDust', 10},
},
output = {
{'IronPlate', 10},
},
ticks = 100,
tier = 2,
},
{
name = 'SSCraft',
machine = 'Mixer',
input = {
{'IronDust', 4},
{'ChromiumDust', 1},
},
output = {
{'StainlessSteelDust', 4},
},
ticks = 400,
},
{
name = 'Steel',
machine = 'IndustrialSmelter',
input = {
{'IronDust', 10},
{'CoalDust', 5},
{'Oxygen', 1000},
},
output = {
{'SteelPlate', 10},
},
ticks = 200,
},
{
name = 'IronPlate',
machine = 'Smelter',
input = {
{'IronDust', 1},
},
output = {
{'IronPlate', 1},
},
ticks = 100,
},
}