Module:Data/Organics/InInput: Difference between revisions
Jump to navigation
Jump to search
Created page with "return { { name = 'OrgToCoal', input = { {'Organics', 10}, }, output = { {'Coal', 2}, {'Creosote', 100}, }, ticks = 240, }, { name = 'Organics', input = { {'Organics', 1}, {'Water', 500}, }, output = { {'Biomass', 500}, }, ticks = 200, }, { name = 'Resistor2', input = {..." |
No edit summary |
||
| Line 2: | Line 2: | ||
{ | { | ||
name = 'OrgToCoal', | name = 'OrgToCoal', | ||
machine = 'Oven', | |||
input = { | input = { | ||
{'Organics', 10}, | {'Organics', 10}, | ||
| Line 13: | Line 14: | ||
{ | { | ||
name = 'Organics', | name = 'Organics', | ||
machine = 'Mixer', | |||
input = { | input = { | ||
{'Organics', 1}, | {'Organics', 1}, | ||
| Line 24: | Line 26: | ||
{ | { | ||
name = 'Resistor2', | name = 'Resistor2', | ||
machine = 'Assembler', | |||
input = { | input = { | ||
{'CoalDust', 1}, | {'CoalDust', 1}, | ||
| Line 37: | Line 40: | ||
{ | { | ||
name = 'Resistor', | name = 'Resistor', | ||
machine = 'Hand', | |||
input = { | input = { | ||
{'CoalDust', 1}, | {'CoalDust', 1}, | ||
| Line 50: | Line 54: | ||
{ | { | ||
name = 'Dirt', | name = 'Dirt', | ||
machine = 'Hand', | |||
input = { | input = { | ||
{'SandSurface', 1}, | {'SandSurface', 1}, | ||
| Line 61: | Line 66: | ||
{ | { | ||
name = 'Organics', | name = 'Organics', | ||
machine = 'Furnace', | |||
input = { | input = { | ||
{'Organics', 1}, | {'Organics', 1}, | ||
Latest revision as of 10:32, 30 October 2025
Documentation for this module may be created at Module:Data/Organics/InInput/doc
return {
{
name = 'OrgToCoal',
machine = 'Oven',
input = {
{'Organics', 10},
},
output = {
{'Coal', 2},
{'Creosote', 100},
},
ticks = 240,
},
{
name = 'Organics',
machine = 'Mixer',
input = {
{'Organics', 1},
{'Water', 500},
},
output = {
{'Biomass', 500},
},
ticks = 200,
},
{
name = 'Resistor2',
machine = 'Assembler',
input = {
{'CoalDust', 1},
{'Organics', 1},
{'GoldWire', 1},
},
output = {
{'Resistor', 2},
},
ticks = 60,
tier = 2,
},
{
name = 'Resistor',
machine = 'Hand',
input = {
{'CoalDust', 1},
{'Organics', 1},
{'CopperWire', 1},
},
output = {
{'Resistor', 1},
},
ticks = 60,
tier = 1,
},
{
name = 'Dirt',
machine = 'Hand',
input = {
{'SandSurface', 1},
{'Organics', 1},
},
output = {
{'DirtSurface', 1},
},
ticks = 200,
},
{
name = 'Organics',
machine = 'Furnace',
input = {
{'Organics', 1},
},
output = {
},
ticks = 60.0,
},
}