Module:FissionReactorRecipeDictionary: Difference between revisions
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 difference)
|
Revision as of 12:22, 31 July 2025
Documentation for this module may be created at Module:FissionReactorRecipeDictionary/doc
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 = 'UraniumCell3',
ingredients = {
{'UraniumCell', 3},
{'ControlCell', 2},
},
results = {
{'DepletedUraniumCell', 3},
},
time = 6400.0,
},
{
name = 'ThoriumCell',
ingredients = {
{'UraniumCell', 3},
{'ReflectorCell', 4},
{'ThoriumCell', 2},
},
results = {
{'DepletedUraniumCell', 3},
{'Uranium233Cell', 2},
},
time = 1000,
},
{
name = 'PlutoniumCell',
ingredients = {
{'PlutoniumCell', 1},
{'ReflectorCell', 4},
{'ThoriumCell', 3},
},
results = {
{'Uranium233Cell', 3},
{'DepletedUraniumCell', 1},
},
time = 400,
},
{
name = 'PlutoniumCell2',
ingredients = {
{'PlutoniumCell', 1},
{'ReflectorCell', 8},
{'ThoriumCell', 6},
},
results = {
{'Uranium233Cell', 6},
{'DepletedUraniumCell', 1},
},
time = 400,
},
{
name = 'ControlCell',
ingredients = {
{'UraniumCell', 1},
{'ControlCell', 1},
},
results = {
{'DepletedUraniumCell', 1},
},
time = 2140.0,
},
{
name = 'Uranium233Cell',
ingredients = {
{'Uranium233Cell', 1},
{'ControlCell', 1},
},
results = {
{'DepletedUraniumCell', 1},
},
time = 2000,
},
{
name = 'Uranium233Cell2',
ingredients = {
{'Uranium233Cell', 2},
{'ControlCell', 1},
},
results = {
{'DepletedUraniumCell', 2},
},
time = 2000,
},
{
name = 'Uranium233Cell3',
ingredients = {
{'Uranium233Cell', 4},
{'ControlCell', 1},
},
results = {
{'DepletedUraniumCell', 4},
},
time = 2000,
},
}