Module:Data/ReflectorCell/InInput

From Evospace
Jump to navigation Jump to search

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

return {
    {
        name = 'ThoriumCell',
        input = {
            {'UraniumCell', 3},
            {'ReflectorCell', 4},
            {'ThoriumCell', 2},
        },
        output = {
            {'DepletedUraniumCell', 3},
            {'Uranium233Cell', 2},
        },
        ticks = 1000,
    },
    {
        name = 'PlutoniumCell',
        input = {
            {'PlutoniumCell', 1},
            {'ReflectorCell', 4},
            {'ThoriumCell', 3},
        },
        output = {
            {'Uranium233Cell', 3},
            {'DepletedUraniumCell', 1},
        },
        ticks = 400,
    },
    {
        name = 'PlutoniumCell2',
        input = {
            {'PlutoniumCell', 1},
            {'ReflectorCell', 8},
            {'ThoriumCell', 6},
        },
        output = {
            {'Uranium233Cell', 6},
            {'DepletedUraniumCell', 1},
        },
        ticks = 400,
    },
}