Module:AssemblerRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary Tag: Reverted |
||
Line 1: | Line 1: | ||
return { | return { | ||
{ | { | ||
name = ' | name = 'CopperWire2', | ||
input = { | input = { | ||
{' | {'CopperPlate', 1}, | ||
}, | }, | ||
output = { | output = { | ||
{' | {'CopperWire', 2}, | ||
}, | }, | ||
ticks = | ticks = 40, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'GoldWire2', | ||
input = { | input = { | ||
{' | {'GoldPlate', 1}, | ||
}, | }, | ||
output = { | output = { | ||
{' | {'GoldWire', 2}, | ||
}, | }, | ||
ticks = | ticks = 40, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'PlatinumFoil', | ||
input = { | input = { | ||
{' | {'PlatinumPlate', 1}, | ||
}, | }, | ||
output = { | output = { | ||
{' | {'PlatinumFoil', 3}, | ||
}, | }, | ||
ticks = | ticks = 80, | ||
tier = 5, | tier = 5, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'PlatinumWire2', | ||
input = { | input = { | ||
{' | {'PlatinumPlate', 1}, | ||
}, | }, | ||
output = { | output = { | ||
{'PlatinumWire', 2}, | {'PlatinumWire', 2}, | ||
}, | }, | ||
ticks = 40, | |||
ticks = | |||
}, | }, | ||
{ | { | ||
name = ' | name = 'AluminiumFoil', | ||
input = { | input = { | ||
{' | {'AluminiumPlate', 1}, | ||
}, | }, | ||
output = { | output = { | ||
{' | {'AluminiumFoil', 3}, | ||
}, | }, | ||
ticks = | ticks = 80, | ||
tier = 2, | tier = 2, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'YttriumWire2', | ||
input = { | input = { | ||
{' | {'YttriumPlate', 1}, | ||
}, | }, | ||
output = { | output = { | ||
{' | {'YttriumWire', 2}, | ||
}, | }, | ||
ticks = 40, | |||
ticks = | |||
}, | }, | ||
{ | { | ||
name = ' | name = 'TantalumFoil', | ||
input = { | input = { | ||
{' | {'TantalumPlate', 1}, | ||
}, | }, | ||
output = { | output = { | ||
{' | {'TantalumFoil', 3}, | ||
}, | }, | ||
ticks = | ticks = 80, | ||
tier = 5, | tier = 5, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'TantalumWire2', | ||
input = { | input = { | ||
{' | {'TantalumPlate', 1}, | ||
}, | }, | ||
output = { | output = { | ||
{' | {'TantalumWire', 2}, | ||
}, | }, | ||
ticks = | ticks = 40, | ||
}, | }, | ||
} | } |
Revision as of 12:37, 31 July 2025
Documentation for this module may be created at Module:AssemblerRecipeDictionary/doc
return {
{
name = 'CopperWire2',
input = {
{'CopperPlate', 1},
},
output = {
{'CopperWire', 2},
},
ticks = 40,
},
{
name = 'GoldWire2',
input = {
{'GoldPlate', 1},
},
output = {
{'GoldWire', 2},
},
ticks = 40,
},
{
name = 'PlatinumFoil',
input = {
{'PlatinumPlate', 1},
},
output = {
{'PlatinumFoil', 3},
},
ticks = 80,
tier = 5,
},
{
name = 'PlatinumWire2',
input = {
{'PlatinumPlate', 1},
},
output = {
{'PlatinumWire', 2},
},
ticks = 40,
},
{
name = 'AluminiumFoil',
input = {
{'AluminiumPlate', 1},
},
output = {
{'AluminiumFoil', 3},
},
ticks = 80,
tier = 2,
},
{
name = 'YttriumWire2',
input = {
{'YttriumPlate', 1},
},
output = {
{'YttriumWire', 2},
},
ticks = 40,
},
{
name = 'TantalumFoil',
input = {
{'TantalumPlate', 1},
},
output = {
{'TantalumFoil', 3},
},
ticks = 80,
tier = 5,
},
{
name = 'TantalumWire2',
input = {
{'TantalumPlate', 1},
},
output = {
{'TantalumWire', 2},
},
ticks = 40,
},
}