Module:AutomaticFarmRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
{ | { | ||
name = 'Logs', | name = 'Logs', | ||
machine = 'AutomaticFarm', | |||
input = { | input = { | ||
{'Water', 1000}, | {'Water', 1000}, | ||
| Line 12: | Line 13: | ||
{ | { | ||
name = 'Pumpkin', | name = 'Pumpkin', | ||
machine = 'AutomaticFarm', | |||
input = { | input = { | ||
{'Water', 1000}, | {'Water', 1000}, | ||
| Line 22: | Line 24: | ||
{ | { | ||
name = 'Grass', | name = 'Grass', | ||
machine = 'AutomaticFarm', | |||
input = { | input = { | ||
{'Water', 1000}, | {'Water', 1000}, | ||
| Line 33: | Line 36: | ||
{ | { | ||
name = 'Rapeseed', | name = 'Rapeseed', | ||
machine = 'AutomaticFarm', | |||
input = { | input = { | ||
{'Water', 1000}, | {'Water', 1000}, | ||
Latest revision as of 23:01, 27 January 2026
Documentation for this module may be created at Module:AutomaticFarmRecipeDictionary/doc
return {
{
name = 'Logs',
machine = 'AutomaticFarm',
input = {
{'Water', 1000},
},
output = {
{'Log', 15},
},
ticks = 1200,
},
{
name = 'Pumpkin',
machine = 'AutomaticFarm',
input = {
{'Water', 1000},
},
output = {
{'Pumpkin', 15},
},
ticks = 1200,
},
{
name = 'Grass',
machine = 'AutomaticFarm',
input = {
{'Water', 1000},
{'DirtSurface', 15},
},
output = {
{'GrassSurface', 15},
},
ticks = 1200,
},
{
name = 'Rapeseed',
machine = 'AutomaticFarm',
input = {
{'Water', 1000},
},
output = {
{'Rapeseed', 15},
},
ticks = 1200,
},
}