Module:HandRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
Created page with "return { { name = 'CircuitBoard', ingredients = { {'Log', 1}, }, results = { {'CircuitBoard', 1}, }, time = 20, tier = 1, }, { name = 'Circuit', ingredients = { {'CircuitBoard', 1}, {'Triod', 3}, }, results = { {'Circuit', 1}, }, time = 150, tier = 1, }, { name = 'Triod',..." |
No edit summary |
||
Line 1: | Line 1: | ||
return { | return { | ||
{ | { | ||
name = ' | name = 'SandSurface', | ||
ingredients = { | ingredients = { | ||
{' | {'GravelSurface', 1}, | ||
}, | }, | ||
results = { | results = { | ||
{' | {'SandSurface', 1}, | ||
}, | }, | ||
time = 20, | time = 20, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'GravelSurface', | ||
ingredients = { | ingredients = { | ||
{' | {'StoneSurface', 1}, | ||
}, | }, | ||
results = { | results = { | ||
{' | {'GravelSurface', 1}, | ||
}, | }, | ||
time = 20, | time = 20, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Steampack', | ||
ingredients = { | ingredients = { | ||
{' | {'CopperParts', 6}, | ||
{'CopperPlate', 2}, | |||
{'CopperPipe', 4}, | |||
{'Circuit', 10}, | |||
}, | }, | ||
results = { | results = { | ||
{' | {'Steampack', 1}, | ||
}, | }, | ||
time = 20, | time = 20, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'AdvancedSteampack', | ||
ingredients = { | ingredients = { | ||
{' | {'StainlessSteelParts', 30}, | ||
{'StainlessSteelPlate', 10}, | |||
{'CopperPipe', 30}, | |||
{'Processor', 10}, | |||
}, | }, | ||
results = { | results = { | ||
{' | {'AdvancedSteampack', 1}, | ||
}, | }, | ||
time = 20, | time = 20, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'HighCapacitySteampack', | ||
ingredients = { | ingredients = { | ||
{' | {'SteelParts', 30}, | ||
{'SteelPlate', 10}, | |||
{'CopperPipe', 5}, | |||
{'Circuit', 15}, | |||
}, | }, | ||
results = { | results = { | ||
{' | {'HighCapacitySteampack', 1}, | ||
}, | }, | ||
time = 20, | time = 20, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'HighPressureSteampack', | ||
ingredients = { | ingredients = { | ||
{' | {'SteelParts', 6}, | ||
{'SteelPlate', 2}, | |||
{'CopperPipe', 30}, | |||
{'Circuit', 15}, | |||
}, | }, | ||
results = { | results = { | ||
{' | {'HighPressureSteampack', 1}, | ||
}, | }, | ||
time = 20, | time = 20, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Jetpack', | ||
ingredients = { | ingredients = { | ||
{' | {'AluminiumParts', 10}, | ||
{'AluminiumPlate', 3}, | |||
{'AluminiumPipe', 6}, | |||
{'AdvancedCircuit', 10}, | |||
{'AluminiumElectricEngine', 2}, | |||
}, | }, | ||
results = { | results = { | ||
{' | {'Jetpack', 1}, | ||
}, | }, | ||
time = 20, | time = 20, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'AdvancedJetpack', | ||
ingredients = { | ingredients = { | ||
{' | {'StainlessSteelParts', 10}, | ||
{'StainlessSteelPlate', 3}, | |||
{'StainlessSteelPipe', 6}, | |||
{'Processor', 10}, | |||
{'StainlessSteelElectricEngine', 2}, | |||
}, | }, | ||
results = { | results = { | ||
{' | {'AdvancedJetpack', 1}, | ||
}, | }, | ||
time = 20, | time = 20, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'AntigravityUnit', | ||
ingredients = { | ingredients = { | ||
{' | {'CompositeParts', 20}, | ||
{'CompositePlate', 2}, | |||
{'CompositePipe', 6}, | |||
{'QuantumProcessor', 10}, | |||
{'Catalyst', 4}, | |||
{'CompositeElectricEngine', 8}, | |||
}, | }, | ||
results = { | results = { | ||
{' | {'AntigravityUnit', 1}, | ||
}, | }, | ||
time = 20, | time = 20, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Flashlight', | ||
ingredients = { | ingredients = { | ||
{' | {'SteelPipe', 1}, | ||
{'SteelLamp', 1}, | |||
}, | }, | ||
results = { | results = { | ||
{' | {'Flashlight', 1}, | ||
}, | }, | ||
time = 20, | time = 20, | ||
}, | }, | ||
} | } |
Revision as of 12:22, 31 July 2025
Documentation for this module may be created at Module:HandRecipeDictionary/doc
return {
{
name = 'SandSurface',
ingredients = {
{'GravelSurface', 1},
},
results = {
{'SandSurface', 1},
},
time = 20,
},
{
name = 'GravelSurface',
ingredients = {
{'StoneSurface', 1},
},
results = {
{'GravelSurface', 1},
},
time = 20,
},
{
name = 'Steampack',
ingredients = {
{'CopperParts', 6},
{'CopperPlate', 2},
{'CopperPipe', 4},
{'Circuit', 10},
},
results = {
{'Steampack', 1},
},
time = 20,
},
{
name = 'AdvancedSteampack',
ingredients = {
{'StainlessSteelParts', 30},
{'StainlessSteelPlate', 10},
{'CopperPipe', 30},
{'Processor', 10},
},
results = {
{'AdvancedSteampack', 1},
},
time = 20,
},
{
name = 'HighCapacitySteampack',
ingredients = {
{'SteelParts', 30},
{'SteelPlate', 10},
{'CopperPipe', 5},
{'Circuit', 15},
},
results = {
{'HighCapacitySteampack', 1},
},
time = 20,
},
{
name = 'HighPressureSteampack',
ingredients = {
{'SteelParts', 6},
{'SteelPlate', 2},
{'CopperPipe', 30},
{'Circuit', 15},
},
results = {
{'HighPressureSteampack', 1},
},
time = 20,
},
{
name = 'Jetpack',
ingredients = {
{'AluminiumParts', 10},
{'AluminiumPlate', 3},
{'AluminiumPipe', 6},
{'AdvancedCircuit', 10},
{'AluminiumElectricEngine', 2},
},
results = {
{'Jetpack', 1},
},
time = 20,
},
{
name = 'AdvancedJetpack',
ingredients = {
{'StainlessSteelParts', 10},
{'StainlessSteelPlate', 3},
{'StainlessSteelPipe', 6},
{'Processor', 10},
{'StainlessSteelElectricEngine', 2},
},
results = {
{'AdvancedJetpack', 1},
},
time = 20,
},
{
name = 'AntigravityUnit',
ingredients = {
{'CompositeParts', 20},
{'CompositePlate', 2},
{'CompositePipe', 6},
{'QuantumProcessor', 10},
{'Catalyst', 4},
{'CompositeElectricEngine', 8},
},
results = {
{'AntigravityUnit', 1},
},
time = 20,
},
{
name = 'Flashlight',
ingredients = {
{'SteelPipe', 1},
{'SteelLamp', 1},
},
results = {
{'Flashlight', 1},
},
time = 20,
},
}