Module:MaceratorRecipeDictionary

From Evospace
Revision as of 12:20, 31 July 2025 by Evospace (talk | contribs) (Created page with "return { { name = 'Pumpkin', ingredients = { {'Pumpkin', 1}, }, results = { {'Organics', 1}, }, time = 200, tier = 1, }, { name = 'Rapeseed', ingredients = { {'Rapeseed', 2}, }, results = { {'Organics', 1}, }, time = 200, tier = 1, }, { name = 'RubyCrystal', ingredients = {...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:MaceratorRecipeDictionary/doc

return {
    {
        name = 'Pumpkin',
        ingredients = {
            {'Pumpkin', 1},
        },
        results = {
            {'Organics', 1},
        },
        time = 200,
        tier = 1,
    },
    {
        name = 'Rapeseed',
        ingredients = {
            {'Rapeseed', 2},
        },
        results = {
            {'Organics', 1},
        },
        time = 200,
        tier = 1,
    },
    {
        name = 'RubyCrystal',
        ingredients = {
            {'RubyCrystal', 1},
        },
        results = {
            {'RubyDust', 4},
        },
        time = 80,
        tier = 3,
    },
    {
        name = 'Coal',
        ingredients = {
            {'Coal', 1},
        },
        results = {
            {'CoalDust', 1},
        },
        time = 100,
        tier = 1,
    },
    {
        name = 'GravelToSand',
        ingredients = {
            {'GravelSurface', 1},
        },
        results = {
            {'SandSurface', 1},
        },
        time = 100,
        tier = 1,
    },
}