Module:MaceratorRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
Tag: Reverted
No edit summary
Tags: Manual revert Reverted
Line 1: Line 1:
return {
return {
     {
     {
         name = 'CopperPlate',
         name = 'Pumpkin',
         input = {
         input = {
             {'CopperPlate', 1},
             {'Pumpkin', 1},
         },
         },
         output = {
         output = {
             {'CopperDust', 1},
             {'Organics', 1},
         },
         },
         ticks = 80,
         ticks = 200,
         tier = 0,
         tier = 1,
    },
    {
        name = 'GoldPlate',
        input = {
            {'GoldPlate', 1},
        },
        output = {
            {'GoldDust', 1},
        },
        ticks = 80,
        tier = 2,
    },
    {
        name = 'PlatinumPlate',
        input = {
            {'PlatinumPlate', 1},
        },
        output = {
            {'PlatinumDust', 1},
        },
        ticks = 80,
        tier = 5,
     },
     },
     {
     {
         name = 'IronPlate',
         name = 'Rapeseed',
         input = {
         input = {
             {'IronPlate', 1},
             {'Rapeseed', 2},
         },
         },
         output = {
         output = {
             {'IronDust', 1},
             {'Organics', 1},
         },
         },
         ticks = 80,
         ticks = 200,
        tier = 2,
    },
    {
        name = 'SteelPlate',
        input = {
            {'SteelPlate', 1},
        },
        output = {
            {'SteelDust', 1},
        },
        ticks = 80,
         tier = 1,
         tier = 1,
     },
     },
     {
     {
         name = 'AluminiumPlate',
         name = 'RubyCrystal',
         input = {
         input = {
             {'AluminiumPlate', 1},
             {'RubyCrystal', 1},
         },
         },
         output = {
         output = {
             {'AluminiumDust', 1},
             {'RubyDust', 4},
        },
        ticks = 80,
        tier = 2,
    },
    {
        name = 'StainlessSteelPlate',
        input = {
            {'StainlessSteelPlate', 1},
        },
        output = {
            {'StainlessSteelDust', 1},
         },
         },
         ticks = 80,
         ticks = 80,
Line 78: Line 34:
     },
     },
     {
     {
         name = 'TitaniumPlate',
         name = 'Coal',
         input = {
         input = {
             {'TitaniumPlate', 1},
             {'Coal', 1},
         },
         },
         output = {
         output = {
             {'TitaniumDust', 1},
             {'CoalDust', 1},
         },
         },
         ticks = 80,
         ticks = 100,
         tier = 4,
         tier = 1,
     },
     },
     {
     {
         name = 'ChromiumPlate',
         name = 'GravelToSand',
         input = {
         input = {
             {'ChromiumPlate', 1},
             {'GravelSurface', 1},
         },
         },
         output = {
         output = {
             {'ChromiumDust', 1},
             {'SandSurface', 1},
         },
         },
         ticks = 80,
         ticks = 100,
         tier = 3,
         tier = 1,
    },
    {
        name = 'PlutoniumPlate',
        input = {
            {'PlutoniumPlate', 1},
        },
        output = {
            {'PlutoniumDust', 1},
        },
        ticks = 80,
        tier = 0,
    },
    {
        name = 'UraniumPlate',
        input = {
            {'UraniumPlate', 1},
        },
        output = {
            {'UraniumDust', 1},
        },
        ticks = 80,
        tier = 0,
    },
    {
        name = 'Uranium235Plate',
        input = {
            {'Uranium235Plate', 1},
        },
        output = {
            {'Uranium235Dust', 1},
        },
        ticks = 80,
        tier = 0,
    },
    {
        name = 'Uranium233Plate',
        input = {
            {'Uranium233Plate', 1},
        },
        output = {
            {'Uranium233Dust', 1},
        },
        ticks = 80,
        tier = 0,
    },
    {
        name = 'ThoriumPlate',
        input = {
            {'ThoriumPlate', 1},
        },
        output = {
            {'ThoriumDust', 1},
        },
        ticks = 80,
        tier = 0,
    },
    {
        name = 'YttriumPlate',
        input = {
            {'YttriumPlate', 1},
        },
        output = {
            {'YttriumDust', 1},
        },
        ticks = 80,
        tier = 4,
    },
    {
        name = 'TantalumPlate',
        input = {
            {'TantalumPlate', 1},
        },
        output = {
            {'TantalumDust', 1},
        },
        ticks = 80,
        tier = 5,
     },
     },
}
}

Revision as of 13:29, 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,
    },
}