Module:Data/Capacitor/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 8: Line 8:
         },
         },
         output = {
         output = {
             {'Capacitor', 2},
             {'Capacitor', 4},
         },
         },
         ticks = 60,
         ticks = 60,
Line 21: Line 21:
         },
         },
         output = {
         output = {
             {'Capacitor', 4},
             {'Capacitor', 8},
         },
         },
         ticks = 60,
         ticks = 60,
Line 30: Line 30:
         machine = 'Assembler',
         machine = 'Assembler',
         input = {
         input = {
             {'TantalumFoil', 2},
             {'TantalumFoil', 3},
             {'CarbonFiberSheet', 1},
             {'CarbonFiberSheet', 2},
            {'PolyethyleneSheet', 1},
         },
         },
         output = {
         output = {
             {'Capacitor', 8},
             {'Capacitor', 16},
         },
         },
         ticks = 60,
         ticks = 60,

Latest revision as of 21:21, 27 January 2026

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

return {
    {
        name = 'Capacitor2',
        machine = 'Assembler',
        input = {
            {'AluminiumFoil', 2},
            {'MicaFlakes', 1},
        },
        output = {
            {'Capacitor', 4},
        },
        ticks = 60,
        tier = 2,
    },
    {
        name = 'Capacitor3',
        machine = 'Assembler',
        input = {
            {'TantalumFoil', 2},
            {'PolyethyleneSheet', 1},
        },
        output = {
            {'Capacitor', 8},
        },
        ticks = 60,
        tier = 5,
    },
    {
        name = 'Capacitor4',
        machine = 'Assembler',
        input = {
            {'TantalumFoil', 3},
            {'CarbonFiberSheet', 2},
        },
        output = {
            {'Capacitor', 16},
        },
        ticks = 60,
        tier = 5,
    },
    {
        name = 'Capacitor',
        machine = 'Hand',
        input = {
            {'AluminiumFoil', 2},
            {'Log', 1},
        },
        output = {
            {'Capacitor', 1},
        },
        ticks = 80,
        tier = 1,
    },
}