Module:Data/Transistor/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 5: Line 5:
         input = {
         input = {
             {'Silicon', 1},
             {'Silicon', 1},
             {'GoldWire', 1},
             {'CopperWire', 3},
             {'PolyethyleneSheet', 1},
             {'PolyethyleneSheet', 1},
         },
         },
Line 19: Line 19:
         input = {
         input = {
             {'SiliconWafer', 1},
             {'SiliconWafer', 1},
             {'GoldWire', 4},
             {'CopperWire', 4},
             {'PolyethyleneSheet', 1},
             {'PolyethyleneSheet', 1},
         },
         },
         output = {
         output = {
             {'Transistor', 8},
             {'Transistor', 4},
         },
         },
         ticks = 60,
         ticks = 60,
Line 33: Line 33:
         input = {
         input = {
             {'DopedSiliconWafer', 1},
             {'DopedSiliconWafer', 1},
             {'PlatinumWire', 2},
             {'CopperWire', 6},
             {'PolyethyleneSheet', 1},
             {'PolyethyleneSheet', 1},
         },
         },
         output = {
         output = {
             {'Transistor', 16},
             {'Transistor', 8},
         },
         },
         ticks = 60,
         ticks = 60,

Latest revision as of 21:21, 27 January 2026

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

return {
    {
        name = 'Transistor2',
        machine = 'Assembler',
        input = {
            {'Silicon', 1},
            {'CopperWire', 3},
            {'PolyethyleneSheet', 1},
        },
        output = {
            {'Transistor', 2},
        },
        ticks = 60,
        tier = 2,
    },
    {
        name = 'Transistor3',
        machine = 'Assembler',
        input = {
            {'SiliconWafer', 1},
            {'CopperWire', 4},
            {'PolyethyleneSheet', 1},
        },
        output = {
            {'Transistor', 4},
        },
        ticks = 60,
        tier = 3,
    },
    {
        name = 'Transistor4',
        machine = 'Assembler',
        input = {
            {'DopedSiliconWafer', 1},
            {'CopperWire', 6},
            {'PolyethyleneSheet', 1},
        },
        output = {
            {'Transistor', 8},
        },
        ticks = 60,
        tier = 4,
    },
    {
        name = 'Transistor',
        machine = 'Hand',
        input = {
            {'Silicon', 1},
            {'CopperWire', 2},
        },
        output = {
            {'Transistor', 1},
        },
        ticks = 80,
        tier = 1,
    },
}