Module:Data/YttriumDust/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'YttriumDust', input = { {'YttriumDust', 1}, {'Mercury', 300}, }, output = { {'YttriumPlate', 1}, {'HotMercury', 300}, }, ticks = 200, tier = 5, }, { name = 'QuantumCore', input = { {'YttriumDust', 2}, {'CompositePlate', 1}, }, output = { {'QuantumCore', 2}, },..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'YttriumDust',
         name = 'YttriumDust',
        machine = 'IndustrialSmelter',
         input = {
         input = {
             {'YttriumDust', 1},
             {'YttriumDust', 1},
Line 15: Line 16:
     {
     {
         name = 'QuantumCore',
         name = 'QuantumCore',
        machine = 'Assembler',
         input = {
         input = {
             {'YttriumDust', 2},
             {'YttriumDust', 1},
             {'CompositePlate', 1},
             {'CopperParts', 3},
         },
         },
         output = {
         output = {
             {'QuantumCore', 2},
             {'QuantumCore', 1},
            {'QuantumCore', 1},
         },
         },
         ticks = 100,
         ticks = 100,
Line 27: Line 30:
     {
     {
         name = 'ControlCell',
         name = 'ControlCell',
        machine = 'Assembler',
         input = {
         input = {
             {'Cell', 1},
             {'Cell', 1},
Line 38: Line 42:
     {
     {
         name = 'QuantumCore',
         name = 'QuantumCore',
        machine = 'Hand',
         input = {
         input = {
             {'YttriumDust', 1},
             {'YttriumDust', 1},
Line 50: Line 55:
     {
     {
         name = 'ControlCell',
         name = 'ControlCell',
        machine = 'Hand',
         input = {
         input = {
             {'Cell', 1},
             {'Cell', 1},

Latest revision as of 10:33, 30 October 2025

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

return {
    {
        name = 'YttriumDust',
        machine = 'IndustrialSmelter',
        input = {
            {'YttriumDust', 1},
            {'Mercury', 300},
        },
        output = {
            {'YttriumPlate', 1},
            {'HotMercury', 300},
        },
        ticks = 200,
        tier = 5,
    },
    {
        name = 'QuantumCore',
        machine = 'Assembler',
        input = {
            {'YttriumDust', 1},
            {'CopperParts', 3},
        },
        output = {
            {'QuantumCore', 1},
            {'QuantumCore', 1},
        },
        ticks = 100,
        tier = 5,
    },
    {
        name = 'ControlCell',
        machine = 'Assembler',
        input = {
            {'Cell', 1},
            {'YttriumDust', 3},
        },
        output = {
            {'ControlCell', 1},
        },
        ticks = 100,
    },
    {
        name = 'QuantumCore',
        machine = 'Hand',
        input = {
            {'YttriumDust', 1},
            {'CopperParts', 3},
        },
        output = {
            {'QuantumCore', 1},
        },
        ticks = 100,
        tier = 4,
    },
    {
        name = 'ControlCell',
        machine = 'Hand',
        input = {
            {'Cell', 1},
            {'YttriumDust', 3},
        },
        output = {
            {'ControlCell', 1},
        },
        ticks = 100,
    },
}