Module:AssemblerRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
Created page with "return { { name = 'CircuitBoard2', ingredients = { {'Log', 1}, {'PolyethyleneSheet', 2}, }, results = { {'CircuitBoard', 4}, }, time = 20, tier = 4, }, { name = 'CircuitBoard3', ingredients = { {'CarbonFiberSheet', 1}, {'PolyethyleneSheet', 2}, }, results = { {'CircuitBoard', 8}, }, tim..." |
No edit summary |
||
Line 1: | Line 1: | ||
return { | return { | ||
{ | { | ||
name = ' | name = 'CopperWire2', | ||
ingredients = { | ingredients = { | ||
{' | {'CopperPlate', 1}, | ||
}, | }, | ||
results = { | results = { | ||
{' | {'CopperWire', 2}, | ||
}, | }, | ||
time = | time = 40, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'GoldWire2', | ||
ingredients = { | ingredients = { | ||
{' | {'GoldPlate', 1}, | ||
}, | }, | ||
results = { | results = { | ||
{' | {'GoldWire', 2}, | ||
}, | }, | ||
time = | time = 40, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'PlatinumFoil', | ||
ingredients = { | ingredients = { | ||
{' | {'PlatinumPlate', 1}, | ||
}, | }, | ||
results = { | results = { | ||
{' | {'PlatinumFoil', 3}, | ||
}, | }, | ||
time = | time = 80, | ||
tier = 5, | tier = 5, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'PlatinumWire2', | ||
ingredients = { | ingredients = { | ||
{' | {'PlatinumPlate', 1}, | ||
}, | }, | ||
results = { | results = { | ||
{'PlatinumWire', 2}, | {'PlatinumWire', 2}, | ||
}, | }, | ||
time = 40, | |||
time = | |||
}, | }, | ||
{ | { | ||
name = ' | name = 'AluminiumFoil', | ||
ingredients = { | ingredients = { | ||
{' | {'AluminiumPlate', 1}, | ||
}, | }, | ||
results = { | results = { | ||
{' | {'AluminiumFoil', 3}, | ||
}, | }, | ||
time = | time = 80, | ||
tier = 2, | tier = 2, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'YttriumWire2', | ||
ingredients = { | ingredients = { | ||
{' | {'YttriumPlate', 1}, | ||
}, | }, | ||
results = { | results = { | ||
{' | {'YttriumWire', 2}, | ||
}, | }, | ||
time = 40, | |||
time = | |||
}, | }, | ||
{ | { | ||
name = ' | name = 'TantalumFoil', | ||
ingredients = { | ingredients = { | ||
{' | {'TantalumPlate', 1}, | ||
}, | }, | ||
results = { | results = { | ||
{' | {'TantalumFoil', 3}, | ||
}, | }, | ||
time = | time = 80, | ||
tier = 5, | tier = 5, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'TantalumWire2', | ||
ingredients = { | ingredients = { | ||
{' | {'TantalumPlate', 1}, | ||
}, | }, | ||
results = { | results = { | ||
{' | {'TantalumWire', 2}, | ||
}, | }, | ||
time = | time = 40, | ||
}, | }, | ||
} | } |
Revision as of 12:22, 31 July 2025
Documentation for this module may be created at Module:AssemblerRecipeDictionary/doc
return {
{
name = 'CopperWire2',
ingredients = {
{'CopperPlate', 1},
},
results = {
{'CopperWire', 2},
},
time = 40,
},
{
name = 'GoldWire2',
ingredients = {
{'GoldPlate', 1},
},
results = {
{'GoldWire', 2},
},
time = 40,
},
{
name = 'PlatinumFoil',
ingredients = {
{'PlatinumPlate', 1},
},
results = {
{'PlatinumFoil', 3},
},
time = 80,
tier = 5,
},
{
name = 'PlatinumWire2',
ingredients = {
{'PlatinumPlate', 1},
},
results = {
{'PlatinumWire', 2},
},
time = 40,
},
{
name = 'AluminiumFoil',
ingredients = {
{'AluminiumPlate', 1},
},
results = {
{'AluminiumFoil', 3},
},
time = 80,
tier = 2,
},
{
name = 'YttriumWire2',
ingredients = {
{'YttriumPlate', 1},
},
results = {
{'YttriumWire', 2},
},
time = 40,
},
{
name = 'TantalumFoil',
ingredients = {
{'TantalumPlate', 1},
},
results = {
{'TantalumFoil', 3},
},
time = 80,
tier = 5,
},
{
name = 'TantalumWire2',
ingredients = {
{'TantalumPlate', 1},
},
results = {
{'TantalumWire', 2},
},
time = 40,
},
}