Module:MaceratorRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
return { | return { | ||
{ | { | ||
name = ' | name = 'Pumpkin', | ||
input = { | |||
{' | {'Pumpkin', 1}, | ||
}, | }, | ||
output = { | |||
{' | {'Organics', 1}, | ||
}, | }, | ||
ticks = 200, | |||
tier = | tier = 1, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Rapeseed', | ||
input = { | |||
{' | {'Rapeseed', 2}, | ||
}, | }, | ||
output = { | |||
{' | {'Organics', 1}, | ||
}, | }, | ||
ticks = 200, | |||
tier = 1, | tier = 1, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'RubyCrystal', | ||
input = { | |||
{' | {'RubyCrystal', 1}, | ||
}, | }, | ||
output = { | |||
{' | {'RubyDust', 4}, | ||
}, | }, | ||
ticks = 80, | |||
tier = 3, | tier = 3, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'Coal', | ||
input = { | |||
{' | {'Coal', 1}, | ||
}, | }, | ||
output = { | |||
{' | {'CoalDust', 1}, | ||
}, | }, | ||
ticks = 100, | |||
tier = | tier = 1, | ||
}, | }, | ||
{ | { | ||
name = ' | name = 'GravelToSand', | ||
input = { | |||
{' | {'GravelSurface', 1}, | ||
}, | }, | ||
output = { | |||
{' | {'SandSurface', 1}, | ||
}, | }, | ||
ticks = 100, | |||
tier = | tier = 1, | ||
}, | }, | ||
} | } |
Revision as of 12:37, 31 July 2025
Documentation for this module may be created at Module:MaceratorRecipeDictionary/doc
return {
{
name = 'Pumpkin',
input = {
{'Pumpkin', 1},
},
output = {
{'Organics', 1},
},
ticks = 200,
tier = 1,
},
{
name = 'Rapeseed',
input = {
{'Rapeseed', 2},
},
output = {
{'Organics', 1},
},
ticks = 200,
tier = 1,
},
{
name = 'RubyCrystal',
input = {
{'RubyCrystal', 1},
},
output = {
{'RubyDust', 4},
},
ticks = 80,
tier = 3,
},
{
name = 'Coal',
input = {
{'Coal', 1},
},
output = {
{'CoalDust', 1},
},
ticks = 100,
tier = 1,
},
{
name = 'GravelToSand',
input = {
{'GravelSurface', 1},
},
output = {
{'SandSurface', 1},
},
ticks = 100,
tier = 1,
},
}