Module:MixerRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
Created page with "return { { name = 'SSCraft', ingredients = { {'IronDust', 4}, {'ChromiumDust', 1}, }, results = { {'StainlessSteelDust', 4}, }, time = 400, }, { name = 'BuildingMaterial2', ingredients = { {'GravelSurface', 1}, {'SandSurface', 1}, {'Water', 500}, }, results = { {'BuildingMaterial', 10}, },..." |
(No difference)
|
Revision as of 12:22, 31 July 2025
Documentation for this module may be created at Module:MixerRecipeDictionary/doc
return {
{
name = 'SSCraft',
ingredients = {
{'IronDust', 4},
{'ChromiumDust', 1},
},
results = {
{'StainlessSteelDust', 4},
},
time = 400,
},
{
name = 'BuildingMaterial2',
ingredients = {
{'GravelSurface', 1},
{'SandSurface', 1},
{'Water', 500},
},
results = {
{'BuildingMaterial', 10},
},
time = 60,
tier = 2,
},
{
name = 'BuildingMaterial3',
ingredients = {
{'GravelSurface', 1},
{'SandSurface', 1},
{'Water', 500},
{'SteelParts', 2},
},
results = {
{'BuildingMaterial', 20},
},
time = 60,
tier = 3,
},
{
name = 'BuildingMaterial4',
ingredients = {
{'GravelSurface', 1},
{'SandSurface', 1},
{'Water', 500},
{'TitaniumParts', 2},
},
results = {
{'BuildingMaterial', 40},
},
time = 60,
tier = 4,
},
{
name = 'BuildingMaterial5',
ingredients = {
{'GravelSurface', 1},
{'SandSurface', 1},
{'Water', 500},
{'CompositeParts', 2},
},
results = {
{'BuildingMaterial', 80},
},
time = 60,
tier = 5,
},
{
name = 'BuildingMaterial6',
ingredients = {
{'GravelSurface', 1},
{'SandSurface', 1},
{'Water', 500},
{'NeutroniumParts', 2},
},
results = {
{'BuildingMaterial', 160},
},
time = 60,
tier = 6,
},
{
name = 'PreparedTitaniumOxideCraft',
ingredients = {
{'TitaniumOxideDust', 1},
{'Coke', 2},
},
results = {
{'PreparedTitaniumOxideDust', 1},
},
time = 200,
},
{
name = 'Organics',
ingredients = {
{'Organics', 1},
{'Water', 500},
},
results = {
{'Biomass', 500},
},
time = 200,
},
}