Module:ArcSmelterRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 1: | Line 1: | ||
return { | return { | ||
{ | { | ||
name = ' | name = 'SandSurfaceSmelting', | ||
input = { | |||
{' | {'SandSurface', 10}, | ||
}, | }, | ||
output = { | |||
{' | {'Glass', 10}, | ||
}, | }, | ||
ticks = 100, | |||
}, | }, | ||
{ | { | ||
name = ' | name = 'CopperPlate', | ||
input = { | |||
{' | {'CopperDust', 10}, | ||
}, | }, | ||
output = { | |||
{'CopperPlate', | {'CopperPlate', 10}, | ||
}, | }, | ||
ticks = 100, | |||
tier = 0, | tier = 0, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'GoldPlate', | ||
input = { | |||
{' | {'GoldDust', 10}, | ||
}, | }, | ||
output = { | |||
{' | {'GoldPlate', 10}, | ||
}, | }, | ||
ticks = 100, | |||
tier = 2, | tier = 2, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'PlatinumPlate', | ||
input = { | |||
{' | {'PlatinumDust', 1}, | ||
}, | }, | ||
output = { | |||
{' | {'PlatinumPlate', 1}, | ||
}, | }, | ||
ticks = 100, | |||
tier = | tier = 5, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'IronPlate', | ||
input = { | |||
{' | {'IronDust', 10}, | ||
}, | }, | ||
output = { | |||
{' | {'IronPlate', 10}, | ||
}, | }, | ||
ticks = 100, | |||
tier = | tier = 2, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'SteelPlate', | ||
input = { | |||
{' | {'SteelDust', 1}, | ||
}, | }, | ||
output = { | |||
{' | {'SteelPlate', 1}, | ||
}, | }, | ||
ticks = 100, | |||
tier = 1, | tier = 1, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'AluminiumPlate', | ||
input = { | |||
{' | {'AluminiumDust', 1}, | ||
}, | }, | ||
output = { | |||
{' | {'AluminiumPlate', 1}, | ||
}, | }, | ||
ticks = 100, | |||
tier = | tier = 2, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'StainlessSteelPlate', | ||
input = { | |||
{' | {'StainlessSteelDust', 1}, | ||
}, | }, | ||
output = { | |||
{' | {'StainlessSteelPlate', 1}, | ||
}, | }, | ||
ticks = 100, | |||
tier = | tier = 3, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'ChromiumPlate', | ||
input = { | |||
{' | {'ChromiumDust', 1}, | ||
}, | }, | ||
output = { | |||
{' | {'ChromiumPlate', 1}, | ||
}, | }, | ||
ticks = 100, | |||
tier = | tier = 3, | ||
}, | }, | ||
} | } |
Revision as of 12:37, 31 July 2025
Documentation for this module may be created at Module:ArcSmelterRecipeDictionary/doc
return {
{
name = 'SandSurfaceSmelting',
input = {
{'SandSurface', 10},
},
output = {
{'Glass', 10},
},
ticks = 100,
},
{
name = 'CopperPlate',
input = {
{'CopperDust', 10},
},
output = {
{'CopperPlate', 10},
},
ticks = 100,
tier = 0,
},
{
name = 'GoldPlate',
input = {
{'GoldDust', 10},
},
output = {
{'GoldPlate', 10},
},
ticks = 100,
tier = 2,
},
{
name = 'PlatinumPlate',
input = {
{'PlatinumDust', 1},
},
output = {
{'PlatinumPlate', 1},
},
ticks = 100,
tier = 5,
},
{
name = 'IronPlate',
input = {
{'IronDust', 10},
},
output = {
{'IronPlate', 10},
},
ticks = 100,
tier = 2,
},
{
name = 'SteelPlate',
input = {
{'SteelDust', 1},
},
output = {
{'SteelPlate', 1},
},
ticks = 100,
tier = 1,
},
{
name = 'AluminiumPlate',
input = {
{'AluminiumDust', 1},
},
output = {
{'AluminiumPlate', 1},
},
ticks = 100,
tier = 2,
},
{
name = 'StainlessSteelPlate',
input = {
{'StainlessSteelDust', 1},
},
output = {
{'StainlessSteelPlate', 1},
},
ticks = 100,
tier = 3,
},
{
name = 'ChromiumPlate',
input = {
{'ChromiumDust', 1},
},
output = {
{'ChromiumPlate', 1},
},
ticks = 100,
tier = 3,
},
}