Module:Data/QuantumCore/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'QuantumCircuit2', input = { {'QuantumCore', 2}, {'Processor', 2}, {'Resistor', 6}, {'Transistor', 6}, }, output = { {'QuantumCircuit', 1}, }, ticks = 200, tier = 4, }, { name = 'QuantumCircuit', input = { {'QuantumCore', 2}, {'Processor', 3}, {'Resistor', 6}, },..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'QuantumCircuit2',
         name = 'QuantumCircuit2',
        machine = 'Assembler',
         input = {
         input = {
             {'QuantumCore', 2},
             {'QuantumCore', 4},
             {'Processor', 2},
             {'Processor', 2},
             {'Resistor', 6},
             {'Resistor', 6},
Line 16: Line 17:
     {
     {
         name = 'QuantumCircuit',
         name = 'QuantumCircuit',
        machine = 'Hand',
         input = {
         input = {
             {'QuantumCore', 2},
             {'QuantumCore', 6},
             {'Processor', 3},
             {'Processor', 3},
             {'Resistor', 6},
             {'Resistor', 6},

Latest revision as of 10:33, 30 October 2025

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

return {
    {
        name = 'QuantumCircuit2',
        machine = 'Assembler',
        input = {
            {'QuantumCore', 4},
            {'Processor', 2},
            {'Resistor', 6},
            {'Transistor', 6},
        },
        output = {
            {'QuantumCircuit', 1},
        },
        ticks = 200,
        tier = 4,
    },
    {
        name = 'QuantumCircuit',
        machine = 'Hand',
        input = {
            {'QuantumCore', 6},
            {'Processor', 3},
            {'Resistor', 6},
        },
        output = {
            {'QuantumCircuit', 1},
        },
        ticks = 200,
        tier = 4,
    },
}