Module:Data/UraniumCell/InInput

From Evospace
Revision as of 20:07, 31 July 2025 by Evospace (talk | contribs) (Created page with "return { { name = 'UraniumCell', input = { {'UraniumCell', 1}, }, output = { {'DepletedUraniumCell', 1}, }, ticks = 2000.0, }, { name = 'UraniumCell2', input = { {'UraniumCell', 2}, {'ControlCell', 1}, }, output = { {'DepletedUraniumCell', 2}, }, ticks = 4200.0, }, { name = 'UraniumCell3',...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

return {
    {
        name = 'UraniumCell',
        input = {
            {'UraniumCell', 1},
        },
        output = {
            {'DepletedUraniumCell', 1},
        },
        ticks = 2000.0,
    },
    {
        name = 'UraniumCell2',
        input = {
            {'UraniumCell', 2},
            {'ControlCell', 1},
        },
        output = {
            {'DepletedUraniumCell', 2},
        },
        ticks = 4200.0,
    },
    {
        name = 'UraniumCell3',
        input = {
            {'UraniumCell', 3},
            {'ControlCell', 2},
        },
        output = {
            {'DepletedUraniumCell', 3},
        },
        ticks = 6400.0,
    },
    {
        name = 'ThoriumCell',
        input = {
            {'UraniumCell', 3},
            {'ReflectorCell', 4},
            {'ThoriumCell', 2},
        },
        output = {
            {'DepletedUraniumCell', 3},
            {'Uranium233Cell', 2},
        },
        ticks = 1000,
    },
    {
        name = 'ControlCell',
        input = {
            {'UraniumCell', 1},
            {'ControlCell', 1},
        },
        output = {
            {'DepletedUraniumCell', 1},
        },
        ticks = 2140.0,
    },
}