Module:Data/CoalDust/InInput: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
return { | return { | ||
{ | |||
name = 'SteelElectrolyzer', | |||
machine = 'Hand', | |||
input = { | |||
{'SteelPlate', 3}, | |||
{'CoalDust', 2}, | |||
{'CopperConnector', 2}, | |||
}, | |||
output = { | |||
{'SteelElectrolyzer', 1}, | |||
}, | |||
ticks = 20, | |||
tier = 2, | |||
}, | |||
{ | |||
name = 'AluminiumElectrolyzer', | |||
machine = 'Hand', | |||
input = { | |||
{'AluminiumPlate', 3}, | |||
{'CoalDust', 2}, | |||
{'CopperConnector', 7}, | |||
}, | |||
output = { | |||
{'AluminiumElectrolyzer', 1}, | |||
}, | |||
ticks = 20, | |||
tier = 3, | |||
}, | |||
{ | |||
name = 'StainlessSteelElectrolyzer', | |||
machine = 'Hand', | |||
input = { | |||
{'StainlessSteelPlate', 3}, | |||
{'CoalDust', 2}, | |||
{'CopperConnector', 12}, | |||
}, | |||
output = { | |||
{'StainlessSteelElectrolyzer', 1}, | |||
}, | |||
ticks = 20, | |||
tier = 4, | |||
}, | |||
{ | |||
name = 'TitaniumElectrolyzer', | |||
machine = 'Hand', | |||
input = { | |||
{'TitaniumPlate', 3}, | |||
{'CoalDust', 2}, | |||
{'CopperConnector', 17}, | |||
}, | |||
output = { | |||
{'TitaniumElectrolyzer', 1}, | |||
}, | |||
ticks = 20, | |||
tier = 5, | |||
}, | |||
{ | |||
name = 'CompositeElectrolyzer', | |||
machine = 'Hand', | |||
input = { | |||
{'CompositePlate', 3}, | |||
{'CoalDust', 2}, | |||
{'CopperConnector', 17}, | |||
}, | |||
output = { | |||
{'CompositeElectrolyzer', 1}, | |||
}, | |||
ticks = 20, | |||
tier = 6, | |||
}, | |||
{ | |||
name = 'NeutroniumElectrolyzer', | |||
machine = 'Hand', | |||
input = { | |||
{'NeutroniumPlate', 3}, | |||
{'CoalDust', 2}, | |||
{'CopperConnector', 17}, | |||
}, | |||
output = { | |||
{'NeutroniumElectrolyzer', 1}, | |||
}, | |||
ticks = 20, | |||
tier = 7, | |||
}, | |||
{ | { | ||
name = 'CoalDustToCoke', | name = 'CoalDustToCoke', | ||
| Line 24: | Line 108: | ||
}, | }, | ||
ticks = 200, | ticks = 200, | ||
}, | |||
{ | |||
name = 'CoalDust', | |||
machine = 'PyrolysisUnit', | |||
input = { | |||
{'CoalDust', 1}, | |||
}, | |||
output = { | |||
{'Coke', 1}, | |||
{'RawOil', 70}, | |||
{'ProducerGas', 200}, | |||
}, | |||
ticks = 400, | |||
tier = 3, | |||
}, | }, | ||
{ | { | ||
| Line 30: | Line 128: | ||
input = { | input = { | ||
{'CoalDust', 1}, | {'CoalDust', 1}, | ||
{' | {'CopperWire', 3}, | ||
{' | }, | ||
output = { | |||
{'Resistor', 1}, | |||
}, | |||
ticks = 60, | |||
tier = 2, | |||
}, | |||
{ | |||
name = 'Resistor3', | |||
machine = 'Assembler', | |||
input = { | |||
{'CopperWire', 4}, | |||
{'CoalDust', 1}, | |||
{'PolyethyleneSheet', 1}, | |||
}, | }, | ||
output = { | output = { | ||
| Line 37: | Line 148: | ||
}, | }, | ||
ticks = 60, | ticks = 60, | ||
tier = | tier = 3, | ||
}, | |||
{ | |||
name = 'Catalyst2', | |||
machine = 'Assembler', | |||
input = { | |||
{'Cell', 1}, | |||
{'GoldWire', 10}, | |||
{'CoalDust', 4}, | |||
}, | |||
output = { | |||
{'Catalyst', 1}, | |||
}, | |||
ticks = 200, | |||
tier = 4, | |||
}, | |||
{ | |||
name = 'ProducerGas', | |||
machine = 'IndustrialChemReactor', | |||
input = { | |||
{'CoalDust', 1}, | |||
}, | |||
output = { | |||
{'Ash', 1}, | |||
{'ProducerGas', 200}, | |||
}, | |||
ticks = 400, | |||
tier = 3, | |||
}, | }, | ||
{ | { | ||
| Line 56: | Line 194: | ||
input = { | input = { | ||
{'CoalDust', 1}, | {'CoalDust', 1}, | ||
{'CopperWire', 4}, | |||
{'CopperWire', | |||
}, | }, | ||
output = { | output = { | ||
| Line 64: | Line 201: | ||
ticks = 60, | ticks = 60, | ||
tier = 1, | tier = 1, | ||
}, | |||
{ | |||
name = 'Catalyst', | |||
machine = 'Hand', | |||
input = { | |||
{'Cell', 1}, | |||
{'CopperWire', 40}, | |||
{'CoalDust', 4}, | |||
}, | |||
output = { | |||
{'Catalyst', 1}, | |||
}, | |||
ticks = 200, | |||
tier = 3, | |||
}, | }, | ||
{ | { | ||
Latest revision as of 21:15, 27 January 2026
Documentation for this module may be created at Module:Data/CoalDust/InInput/doc
return {
{
name = 'SteelElectrolyzer',
machine = 'Hand',
input = {
{'SteelPlate', 3},
{'CoalDust', 2},
{'CopperConnector', 2},
},
output = {
{'SteelElectrolyzer', 1},
},
ticks = 20,
tier = 2,
},
{
name = 'AluminiumElectrolyzer',
machine = 'Hand',
input = {
{'AluminiumPlate', 3},
{'CoalDust', 2},
{'CopperConnector', 7},
},
output = {
{'AluminiumElectrolyzer', 1},
},
ticks = 20,
tier = 3,
},
{
name = 'StainlessSteelElectrolyzer',
machine = 'Hand',
input = {
{'StainlessSteelPlate', 3},
{'CoalDust', 2},
{'CopperConnector', 12},
},
output = {
{'StainlessSteelElectrolyzer', 1},
},
ticks = 20,
tier = 4,
},
{
name = 'TitaniumElectrolyzer',
machine = 'Hand',
input = {
{'TitaniumPlate', 3},
{'CoalDust', 2},
{'CopperConnector', 17},
},
output = {
{'TitaniumElectrolyzer', 1},
},
ticks = 20,
tier = 5,
},
{
name = 'CompositeElectrolyzer',
machine = 'Hand',
input = {
{'CompositePlate', 3},
{'CoalDust', 2},
{'CopperConnector', 17},
},
output = {
{'CompositeElectrolyzer', 1},
},
ticks = 20,
tier = 6,
},
{
name = 'NeutroniumElectrolyzer',
machine = 'Hand',
input = {
{'NeutroniumPlate', 3},
{'CoalDust', 2},
{'CopperConnector', 17},
},
output = {
{'NeutroniumElectrolyzer', 1},
},
ticks = 20,
tier = 7,
},
{
name = 'CoalDustToCoke',
machine = 'Oven',
input = {
{'CoalDust', 10},
},
output = {
{'Coke', 10},
{'Creosote', 500},
},
ticks = 600,
},
{
name = 'Steel',
machine = 'IndustrialSmelter',
input = {
{'IronDust', 10},
{'CoalDust', 5},
{'Oxygen', 1000},
},
output = {
{'SteelPlate', 10},
},
ticks = 200,
},
{
name = 'CoalDust',
machine = 'PyrolysisUnit',
input = {
{'CoalDust', 1},
},
output = {
{'Coke', 1},
{'RawOil', 70},
{'ProducerGas', 200},
},
ticks = 400,
tier = 3,
},
{
name = 'Resistor2',
machine = 'Assembler',
input = {
{'CoalDust', 1},
{'CopperWire', 3},
},
output = {
{'Resistor', 1},
},
ticks = 60,
tier = 2,
},
{
name = 'Resistor3',
machine = 'Assembler',
input = {
{'CopperWire', 4},
{'CoalDust', 1},
{'PolyethyleneSheet', 1},
},
output = {
{'Resistor', 2},
},
ticks = 60,
tier = 3,
},
{
name = 'Catalyst2',
machine = 'Assembler',
input = {
{'Cell', 1},
{'GoldWire', 10},
{'CoalDust', 4},
},
output = {
{'Catalyst', 1},
},
ticks = 200,
tier = 4,
},
{
name = 'ProducerGas',
machine = 'IndustrialChemReactor',
input = {
{'CoalDust', 1},
},
output = {
{'Ash', 1},
{'ProducerGas', 200},
},
ticks = 400,
tier = 3,
},
{
name = 'CarbonMonoxide',
machine = 'IndustrialChemReactor',
input = {
{'CoalDust', 1},
{'Oxygen', 500},
},
output = {
{'CarbonMonoxide', 250},
},
ticks = 100,
},
{
name = 'Resistor',
machine = 'Hand',
input = {
{'CoalDust', 1},
{'CopperWire', 4},
},
output = {
{'Resistor', 1},
},
ticks = 60,
tier = 1,
},
{
name = 'Catalyst',
machine = 'Hand',
input = {
{'Cell', 1},
{'CopperWire', 40},
{'CoalDust', 4},
},
output = {
{'Catalyst', 1},
},
ticks = 200,
tier = 3,
},
{
name = 'CoalDust',
machine = 'Smelter',
input = {
{'CoalDust', 1},
},
output = {
{'Coal', 1},
},
ticks = 50,
tier = 0,
},
{
name = 'CoalDust',
machine = 'Furnace',
input = {
{'CoalDust', 1},
},
output = {
},
ticks = 720.0,
},
}