Module:Data/UraniumCell/InInput: Difference between revisions
Jump to navigation
Jump to search
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',..." |
No edit summary |
||
| Line 2: | Line 2: | ||
{ | { | ||
name = 'UraniumCell', | name = 'UraniumCell', | ||
machine = 'FissionReactor', | |||
input = { | input = { | ||
{'UraniumCell', 1}, | {'UraniumCell', 1}, | ||
| Line 12: | Line 13: | ||
{ | { | ||
name = 'UraniumCell2', | name = 'UraniumCell2', | ||
machine = 'FissionReactor', | |||
input = { | input = { | ||
{'UraniumCell', 2}, | {'UraniumCell', 2}, | ||
| Line 23: | Line 25: | ||
{ | { | ||
name = 'UraniumCell3', | name = 'UraniumCell3', | ||
machine = 'FissionReactor', | |||
input = { | input = { | ||
{'UraniumCell', 3}, | {'UraniumCell', 3}, | ||
| Line 34: | Line 37: | ||
{ | { | ||
name = 'ThoriumCell', | name = 'ThoriumCell', | ||
machine = 'FissionReactor', | |||
input = { | input = { | ||
{'UraniumCell', 3}, | {'UraniumCell', 3}, | ||
| Line 47: | Line 51: | ||
{ | { | ||
name = 'ControlCell', | name = 'ControlCell', | ||
machine = 'FissionReactor', | |||
input = { | input = { | ||
{'UraniumCell', 1}, | {'UraniumCell', 1}, | ||
Latest revision as of 10:33, 30 October 2025
Documentation for this module may be created at Module:Data/UraniumCell/InInput/doc
return {
{
name = 'UraniumCell',
machine = 'FissionReactor',
input = {
{'UraniumCell', 1},
},
output = {
{'DepletedUraniumCell', 1},
},
ticks = 2000.0,
},
{
name = 'UraniumCell2',
machine = 'FissionReactor',
input = {
{'UraniumCell', 2},
{'ControlCell', 1},
},
output = {
{'DepletedUraniumCell', 2},
},
ticks = 4200.0,
},
{
name = 'UraniumCell3',
machine = 'FissionReactor',
input = {
{'UraniumCell', 3},
{'ControlCell', 2},
},
output = {
{'DepletedUraniumCell', 3},
},
ticks = 6400.0,
},
{
name = 'ThoriumCell',
machine = 'FissionReactor',
input = {
{'UraniumCell', 3},
{'ReflectorCell', 4},
{'ThoriumCell', 2},
},
output = {
{'DepletedUraniumCell', 3},
{'Uranium233Cell', 2},
},
ticks = 1000,
},
{
name = 'ControlCell',
machine = 'FissionReactor',
input = {
{'UraniumCell', 1},
{'ControlCell', 1},
},
output = {
{'DepletedUraniumCell', 1},
},
ticks = 2140.0,
},
}