Module:FusionReactorRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
Created page with "return { { name = 'HotNeutroniumPlate1', ingredients = { {'SynthesisCell', 2}, }, results = { {'HotNeutroniumPlate', 1}, {'Cell', 1}, }, time = 200, }, { name = 'HotNeutroniumPlate2', ingredients = { {'SynthesisCell', 1}, {'UltimateCatalyst', 1}, }, results = { {'HotNeutroniumPlate', 1}, {'Cell', 1..." |
No edit summary |
||
| Line 2: | Line 2: | ||
{ | { | ||
name = 'HotNeutroniumPlate1', | name = 'HotNeutroniumPlate1', | ||
input = { | |||
{'SynthesisCell', 2}, | {'SynthesisCell', 2}, | ||
}, | }, | ||
output = { | |||
{'HotNeutroniumPlate', 1}, | {'HotNeutroniumPlate', 1}, | ||
{'Cell', 1}, | {'Cell', 1}, | ||
}, | }, | ||
ticks = 200, | |||
}, | }, | ||
{ | { | ||
name = 'HotNeutroniumPlate2', | name = 'HotNeutroniumPlate2', | ||
input = { | |||
{'SynthesisCell', 1}, | {'SynthesisCell', 1}, | ||
{'UltimateCatalyst', 1}, | {'UltimateCatalyst', 1}, | ||
}, | }, | ||
output = { | |||
{'HotNeutroniumPlate', 1}, | {'HotNeutroniumPlate', 1}, | ||
{'Cell', 1}, | {'Cell', 1}, | ||
}, | }, | ||
ticks = 200, | |||
}, | }, | ||
} | } | ||
Latest revision as of 12:37, 31 July 2025
Documentation for this module may be created at Module:FusionReactorRecipeDictionary/doc
return {
{
name = 'HotNeutroniumPlate1',
input = {
{'SynthesisCell', 2},
},
output = {
{'HotNeutroniumPlate', 1},
{'Cell', 1},
},
ticks = 200,
},
{
name = 'HotNeutroniumPlate2',
input = {
{'SynthesisCell', 1},
{'UltimateCatalyst', 1},
},
output = {
{'HotNeutroniumPlate', 1},
{'Cell', 1},
},
ticks = 200,
},
}