Module:Data/YttriumDust/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'RareEarthSludge', input = { {'RareEarthSludge', 1}, {'Ammonia', 300}, }, output = { {'YttriumDust', 2}, }, ticks = 200, tier = 4, }, { name = 'YttriumPlate', input = { {'YttriumPlate', 1}, }, output = { {'YttriumDust', 1}, }, ticks = 80, tier = 4, }, }"
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'RareEarthSludge',
         name = 'RareEarthSludge',
        machine = 'ChemicalBath',
         input = {
         input = {
             {'RareEarthSludge', 1},
             {'RareEarthSludge', 1},
Line 14: Line 15:
     {
     {
         name = 'YttriumPlate',
         name = 'YttriumPlate',
        machine = 'Macerator',
         input = {
         input = {
             {'YttriumPlate', 1},
             {'YttriumPlate', 1},

Latest revision as of 10:37, 30 October 2025

Documentation for this module may be created at Module:Data/YttriumDust/InOutput/doc

return {
    {
        name = 'RareEarthSludge',
        machine = 'ChemicalBath',
        input = {
            {'RareEarthSludge', 1},
            {'Ammonia', 300},
        },
        output = {
            {'YttriumDust', 2},
        },
        ticks = 200,
        tier = 4,
    },
    {
        name = 'YttriumPlate',
        machine = 'Macerator',
        input = {
            {'YttriumPlate', 1},
        },
        output = {
            {'YttriumDust', 1},
        },
        ticks = 80,
        tier = 4,
    },
}