Module:Data/SiliconWafer/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'Transistor3', input = { {'SiliconWafer', 1}, {'GoldWire', 4}, {'PolyethyleneSheet', 1}, }, output = { {'Transistor', 8}, }, ticks = 60, tier = 3, }, { name = 'Processor2', input = { {'CircuitBoard', 1}, {'AdvancedCircuit', 2}, {'SiliconWafer', 1}, {'Capacitor', 2}, },..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'Transistor3',
         name = 'Transistor3',
        machine = 'Assembler',
         input = {
         input = {
             {'SiliconWafer', 1},
             {'SiliconWafer', 1},
Line 15: Line 16:
     {
     {
         name = 'Processor2',
         name = 'Processor2',
        machine = 'Assembler',
         input = {
         input = {
             {'CircuitBoard', 1},
             {'CircuitBoard', 1},
Line 29: Line 31:
     {
     {
         name = 'DecisionResonator3',
         name = 'DecisionResonator3',
        machine = 'Assembler',
         input = {
         input = {
             {'StainlessSteelParts', 4},
             {'StainlessSteelParts', 4},
Line 42: Line 45:
     {
     {
         name = 'StainlessSteelSolarCell',
         name = 'StainlessSteelSolarCell',
        machine = 'Hand',
         input = {
         input = {
             {'SiliconWafer', 5},
             {'SiliconWafer', 5},

Latest revision as of 10:33, 30 October 2025

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

return {
    {
        name = 'Transistor3',
        machine = 'Assembler',
        input = {
            {'SiliconWafer', 1},
            {'GoldWire', 4},
            {'PolyethyleneSheet', 1},
        },
        output = {
            {'Transistor', 8},
        },
        ticks = 60,
        tier = 3,
    },
    {
        name = 'Processor2',
        machine = 'Assembler',
        input = {
            {'CircuitBoard', 1},
            {'AdvancedCircuit', 2},
            {'SiliconWafer', 1},
            {'Capacitor', 2},
        },
        output = {
            {'Processor', 1},
        },
        ticks = 200,
        tier = 4,
    },
    {
        name = 'DecisionResonator3',
        machine = 'Assembler',
        input = {
            {'StainlessSteelParts', 4},
            {'SiliconWafer', 1},
            {'CompositePlate', 1},
        },
        output = {
            {'DecisionResonator', 2},
        },
        ticks = 100,
        tier = 5,
    },
    {
        name = 'StainlessSteelSolarCell',
        machine = 'Hand',
        input = {
            {'SiliconWafer', 5},
            {'CopperWire', 5},
        },
        output = {
            {'StainlessSteelSolarCell', 1},
        },
        ticks = 80,
        tier = 3,
    },
}