Module:Data/DecisionResonator/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'DecisionResonator2', input = { {'StainlessSteelParts', 4}, {'RubyCrystal', 1}, }, output = { {'DecisionResonator', 2}, }, ticks = 100, tier = 5, }, { name = 'DecisionResonator3', input = { {'StainlessSteelParts', 4}, {'SiliconWafer', 1}, {'CompositePlate', 1}, }, output = {..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'DecisionResonator2',
         name = 'DecisionResonator2',
        machine = 'Assembler',
         input = {
         input = {
             {'StainlessSteelParts', 4},
             {'StainlessSteelParts', 4},
Line 14: Line 15:
     {
     {
         name = 'DecisionResonator3',
         name = 'DecisionResonator3',
        machine = 'Assembler',
         input = {
         input = {
             {'StainlessSteelParts', 4},
             {'StainlessSteelParts', 4},
Line 27: Line 29:
     {
     {
         name = 'DecisionResonator4',
         name = 'DecisionResonator4',
        machine = 'Assembler',
         input = {
         input = {
             {'StainlessSteelParts', 4},
             {'StainlessSteelParts', 4},
Line 40: Line 43:
     {
     {
         name = 'DecisionResonator',
         name = 'DecisionResonator',
        machine = 'Hand',
         input = {
         input = {
             {'StainlessSteelParts', 4},
             {'StainlessSteelParts', 4},

Latest revision as of 10:36, 30 October 2025

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

return {
    {
        name = 'DecisionResonator2',
        machine = 'Assembler',
        input = {
            {'StainlessSteelParts', 4},
            {'RubyCrystal', 1},
        },
        output = {
            {'DecisionResonator', 2},
        },
        ticks = 100,
        tier = 5,
    },
    {
        name = 'DecisionResonator3',
        machine = 'Assembler',
        input = {
            {'StainlessSteelParts', 4},
            {'SiliconWafer', 1},
            {'CompositePlate', 1},
        },
        output = {
            {'DecisionResonator', 2},
        },
        ticks = 100,
        tier = 5,
    },
    {
        name = 'DecisionResonator4',
        machine = 'Assembler',
        input = {
            {'StainlessSteelParts', 4},
            {'DopedSiliconWafer', 1},
            {'CompositePlate', 1},
        },
        output = {
            {'DecisionResonator', 4},
        },
        ticks = 100,
        tier = 5,
    },
    {
        name = 'DecisionResonator',
        machine = 'Hand',
        input = {
            {'StainlessSteelParts', 4},
            {'MicaFlakes', 1},
        },
        output = {
            {'DecisionResonator', 1},
        },
        ticks = 100,
        tier = 5,
    },
}