Module:Data/TantalumFoil/InInput: Difference between revisions
Jump to navigation
Jump to search
Created page with "return { { name = 'Capacitor3', input = { {'TantalumFoil', 2}, {'PolyethyleneSheet', 1}, }, output = { {'Capacitor', 4}, }, ticks = 60, tier = 5, }, { name = 'Capacitor4', input = { {'TantalumFoil', 2}, {'CarbonFiberSheet', 1}, {'PolyethyleneSheet', 1}, }, output = { {'Capacitor', 8},..." |
No edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 2: | Line 2: | ||
{ | { | ||
name = 'Capacitor3', | name = 'Capacitor3', | ||
machine = 'Assembler', | |||
input = { | input = { | ||
{'TantalumFoil', 2}, | {'TantalumFoil', 2}, | ||
| Line 7: | Line 8: | ||
}, | }, | ||
output = { | output = { | ||
{'Capacitor', | {'Capacitor', 8}, | ||
}, | }, | ||
ticks = 60, | ticks = 60, | ||
| Line 14: | Line 15: | ||
{ | { | ||
name = 'Capacitor4', | name = 'Capacitor4', | ||
machine = 'Assembler', | |||
input = { | input = { | ||
{'TantalumFoil', | {'TantalumFoil', 3}, | ||
{'CarbonFiberSheet', | {'CarbonFiberSheet', 2}, | ||
}, | }, | ||
output = { | output = { | ||
{'Capacitor', | {'Capacitor', 16}, | ||
}, | }, | ||
ticks = 60, | ticks = 60, | ||
tier = 5, | |||
}, | |||
{ | |||
name = 'TantalumFoil', | |||
machine = 'Macerator', | |||
input = { | |||
{'TantalumFoil', 3}, | |||
}, | |||
output = { | |||
{'TantalumDust', 1}, | |||
}, | |||
ticks = 80, | |||
tier = 5, | tier = 5, | ||
}, | }, | ||
} | } | ||
Latest revision as of 15:48, 24 August 2026
Documentation for this module may be created at Module:Data/TantalumFoil/InInput/doc
return {
{
name = 'Capacitor3',
machine = 'Assembler',
input = {
{'TantalumFoil', 2},
{'PolyethyleneSheet', 1},
},
output = {
{'Capacitor', 8},
},
ticks = 60,
tier = 5,
},
{
name = 'Capacitor4',
machine = 'Assembler',
input = {
{'TantalumFoil', 3},
{'CarbonFiberSheet', 2},
},
output = {
{'Capacitor', 16},
},
ticks = 60,
tier = 5,
},
{
name = 'TantalumFoil',
machine = 'Macerator',
input = {
{'TantalumFoil', 3},
},
output = {
{'TantalumDust', 1},
},
ticks = 80,
tier = 5,
},
}