Module:Data/Coke/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 = 'IronPlateSmelting', input = { {'Coke', 10}, {'IronPlate', 10}, }, output = { {'SteelPlate', 10}, }, ticks = 2000, }, { name = 'Prepared..." |
No edit summary |
||
| Line 2: | Line 2: | ||
{ | { | ||
name = 'IronDustSmelting', | name = 'IronDustSmelting', | ||
machine = 'BlastFurnace', | |||
input = { | input = { | ||
{'Coke', 10}, | {'Coke', 10}, | ||
| Line 13: | Line 14: | ||
{ | { | ||
name = 'IronPlateSmelting', | name = 'IronPlateSmelting', | ||
machine = 'BlastFurnace', | |||
input = { | input = { | ||
{'Coke', 10}, | {'Coke', 10}, | ||
| Line 24: | Line 26: | ||
{ | { | ||
name = 'PreparedTitaniumOxideCraft', | name = 'PreparedTitaniumOxideCraft', | ||
machine = 'Mixer', | |||
input = { | input = { | ||
{'TitaniumOxideDust', 1}, | {'TitaniumOxideDust', 1}, | ||
| Line 35: | Line 38: | ||
{ | { | ||
name = 'UltimateCatalyst', | name = 'UltimateCatalyst', | ||
machine = 'Hand', | |||
input = { | input = { | ||
{'Cell', 1}, | {'Cell', 1}, | ||
{'NeutroniumParts', | {'NeutroniumParts', 1}, | ||
{'Coke', 10}, | {'Coke', 10}, | ||
}, | }, | ||
| Line 48: | Line 52: | ||
{ | { | ||
name = 'PrimitiveBattery', | name = 'PrimitiveBattery', | ||
machine = 'Hand', | |||
input = { | input = { | ||
{'Coke', 1}, | {'Coke', 1}, | ||
| Line 61: | Line 66: | ||
{ | { | ||
name = 'Coke', | name = 'Coke', | ||
machine = 'Furnace', | |||
input = { | input = { | ||
{'Coke', 1}, | {'Coke', 1}, | ||
Latest revision as of 10:32, 30 October 2025
Documentation for this module may be created at Module:Data/Coke/InInput/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,
},
{
name = 'PreparedTitaniumOxideCraft',
machine = 'Mixer',
input = {
{'TitaniumOxideDust', 1},
{'Coke', 2},
},
output = {
{'PreparedTitaniumOxideDust', 1},
},
ticks = 200,
},
{
name = 'UltimateCatalyst',
machine = 'Hand',
input = {
{'Cell', 1},
{'NeutroniumParts', 1},
{'Coke', 10},
},
output = {
{'UltimateCatalyst', 1},
},
ticks = 200,
tier = 7,
},
{
name = 'PrimitiveBattery',
machine = 'Hand',
input = {
{'Coke', 1},
{'AluminiumParts', 1},
{'SteelPlate', 1},
},
output = {
{'PrimitiveBattery', 1},
},
ticks = 100,
tier = 3,
},
{
name = 'Coke',
machine = 'Furnace',
input = {
{'Coke', 1},
},
output = {
},
ticks = 1200.0,
},
}