Module:SeparatorRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
return { | return { | ||
{ | { | ||
name = ' | name = 'PlutoniumDust', | ||
input = { | |||
{' | {'DepletedUraniumCell', 1}, | ||
}, | }, | ||
output = { | |||
{' | {'Cell', 1}, | ||
{' | {'PlutoniumDust', 1}, | ||
}, | }, | ||
ticks = 400, | |||
tier = | tier = 5, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Sand', | ||
input = { | |||
{' | {'SandSurface', 1}, | ||
}, | }, | ||
output = { | |||
{' | {'SiliconOxide', 1}, | ||
}, | }, | ||
ticks = 100, | |||
}, | }, | ||
{ | { | ||
name = ' | name = 'SiliconOxide', | ||
input = { | |||
{' | {'SandSurface', 2}, | ||
}, | }, | ||
output = { | |||
{'SiliconOxide', 1}, | {'SiliconOxide', 1}, | ||
}, | }, | ||
ticks = 200, | |||
}, | }, | ||
} | } | ||
Revision as of 12:37, 31 July 2025
Documentation for this module may be created at Module:SeparatorRecipeDictionary/doc
return {
{
name = 'PlutoniumDust',
input = {
{'DepletedUraniumCell', 1},
},
output = {
{'Cell', 1},
{'PlutoniumDust', 1},
},
ticks = 400,
tier = 5,
},
{
name = 'Sand',
input = {
{'SandSurface', 1},
},
output = {
{'SiliconOxide', 1},
},
ticks = 100,
},
{
name = 'SiliconOxide',
input = {
{'SandSurface', 2},
},
output = {
{'SiliconOxide', 1},
},
ticks = 200,
},
}