Module:FissionReactorRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'UraniumCell', ingredients = { {'UraniumCell', 1}, }, results = { {'DepletedUraniumCell', 1}, }, time = 2000.0, }, { name = 'UraniumCell2', ingredients = { {'UraniumCell', 2}, {'ControlCell', 1}, }, results = { {'DepletedUraniumCell', 2}, }, time = 4200.0, }, { name = 'Ura..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'UraniumCell',
         name = 'UraniumCell',
         ingredients = {
         input = {
             {'UraniumCell', 1},
             {'UraniumCell', 1},
         },
         },
         results = {
         output = {
             {'DepletedUraniumCell', 1},
             {'DepletedUraniumCell', 1},
         },
         },
         time = 2000.0,
         ticks = 2000.0,
     },
     },
     {
     {
         name = 'UraniumCell2',
         name = 'UraniumCell2',
         ingredients = {
         input = {
             {'UraniumCell', 2},
             {'UraniumCell', 2},
             {'ControlCell', 1},
             {'ControlCell', 1},
         },
         },
         results = {
         output = {
             {'DepletedUraniumCell', 2},
             {'DepletedUraniumCell', 2},
         },
         },
         time = 4200.0,
         ticks = 4200.0,
     },
     },
     {
     {
         name = 'UraniumCell3',
         name = 'UraniumCell3',
         ingredients = {
         input = {
             {'UraniumCell', 3},
             {'UraniumCell', 3},
             {'ControlCell', 2},
             {'ControlCell', 2},
         },
         },
         results = {
         output = {
             {'DepletedUraniumCell', 3},
             {'DepletedUraniumCell', 3},
         },
         },
         time = 6400.0,
         ticks = 6400.0,
     },
     },
     {
     {
         name = 'ThoriumCell',
         name = 'ThoriumCell',
         ingredients = {
         input = {
             {'UraniumCell', 3},
             {'UraniumCell', 3},
             {'ReflectorCell', 4},
             {'ReflectorCell', 4},
             {'ThoriumCell', 2},
             {'ThoriumCell', 2},
         },
         },
         results = {
         output = {
             {'DepletedUraniumCell', 3},
             {'DepletedUraniumCell', 3},
             {'Uranium233Cell', 2},
             {'Uranium233Cell', 2},
         },
         },
         time = 1000,
         ticks = 1000,
     },
     },
     {
     {
         name = 'PlutoniumCell',
         name = 'PlutoniumCell',
         ingredients = {
         input = {
             {'PlutoniumCell', 1},
             {'PlutoniumCell', 1},
             {'ReflectorCell', 4},
             {'ReflectorCell', 4},
             {'ThoriumCell', 3},
             {'ThoriumCell', 3},
         },
         },
         results = {
         output = {
             {'Uranium233Cell', 3},
             {'Uranium233Cell', 3},
             {'DepletedUraniumCell', 1},
             {'DepletedUraniumCell', 1},
         },
         },
         time = 400,
         ticks = 400,
     },
     },
     {
     {
         name = 'PlutoniumCell2',
         name = 'PlutoniumCell2',
         ingredients = {
         input = {
             {'PlutoniumCell', 1},
             {'PlutoniumCell', 1},
             {'ReflectorCell', 8},
             {'ReflectorCell', 8},
             {'ThoriumCell', 6},
             {'ThoriumCell', 6},
         },
         },
         results = {
         output = {
             {'Uranium233Cell', 6},
             {'Uranium233Cell', 6},
             {'DepletedUraniumCell', 1},
             {'DepletedUraniumCell', 1},
         },
         },
         time = 400,
         ticks = 400,
     },
     },
     {
     {
         name = 'ControlCell',
         name = 'ControlCell',
         ingredients = {
         input = {
             {'UraniumCell', 1},
             {'UraniumCell', 1},
             {'ControlCell', 1},
             {'ControlCell', 1},
         },
         },
         results = {
         output = {
             {'DepletedUraniumCell', 1},
             {'DepletedUraniumCell', 1},
         },
         },
         time = 2140.0,
         ticks = 2140.0,
     },
     },
     {
     {
         name = 'Uranium233Cell',
         name = 'Uranium233Cell',
         ingredients = {
         input = {
             {'Uranium233Cell', 1},
             {'Uranium233Cell', 1},
             {'ControlCell', 1},
             {'ControlCell', 1},
         },
         },
         results = {
         output = {
             {'DepletedUraniumCell', 1},
             {'DepletedUraniumCell', 1},
         },
         },
         time = 2000,
         ticks = 2000,
     },
     },
     {
     {
         name = 'Uranium233Cell2',
         name = 'Uranium233Cell2',
         ingredients = {
         input = {
             {'Uranium233Cell', 2},
             {'Uranium233Cell', 2},
             {'ControlCell', 1},
             {'ControlCell', 1},
         },
         },
         results = {
         output = {
             {'DepletedUraniumCell', 2},
             {'DepletedUraniumCell', 2},
         },
         },
         time = 2000,
         ticks = 2000,
     },
     },
     {
     {
         name = 'Uranium233Cell3',
         name = 'Uranium233Cell3',
         ingredients = {
         input = {
             {'Uranium233Cell', 4},
             {'Uranium233Cell', 4},
             {'ControlCell', 1},
             {'ControlCell', 1},
         },
         },
         results = {
         output = {
             {'DepletedUraniumCell', 4},
             {'DepletedUraniumCell', 4},
         },
         },
         time = 2000,
         ticks = 2000,
     },
     },
}
}

Latest revision as of 12:37, 31 July 2025

Documentation for this module may be created at Module:FissionReactorRecipeDictionary/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 = '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,
    },
    {
        name = 'ControlCell',
        input = {
            {'UraniumCell', 1},
            {'ControlCell', 1},
        },
        output = {
            {'DepletedUraniumCell', 1},
        },
        ticks = 2140.0,
    },
    {
        name = 'Uranium233Cell',
        input = {
            {'Uranium233Cell', 1},
            {'ControlCell', 1},
        },
        output = {
            {'DepletedUraniumCell', 1},
        },
        ticks = 2000,
    },
    {
        name = 'Uranium233Cell2',
        input = {
            {'Uranium233Cell', 2},
            {'ControlCell', 1},
        },
        output = {
            {'DepletedUraniumCell', 2},
        },
        ticks = 2000,
    },
    {
        name = 'Uranium233Cell3',
        input = {
            {'Uranium233Cell', 4},
            {'ControlCell', 1},
        },
        output = {
            {'DepletedUraniumCell', 4},
        },
        ticks = 2000,
    },
}