Module:Data/HotNeutroniumPlate/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "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}, },..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'HotNeutroniumPlate1',
         name = 'HotNeutroniumPlate1',
        machine = 'FusionReactor',
         input = {
         input = {
             {'SynthesisCell', 2},
             {'SynthesisCell', 2},
Line 13: Line 14:
     {
     {
         name = 'HotNeutroniumPlate2',
         name = 'HotNeutroniumPlate2',
        machine = 'FusionReactor',
         input = {
         input = {
             {'SynthesisCell', 1},
             {'SynthesisCell', 1},

Latest revision as of 10:37, 30 October 2025

Documentation for this module may be created at Module:Data/HotNeutroniumPlate/InOutput/doc

return {
    {
        name = 'HotNeutroniumPlate1',
        machine = 'FusionReactor',
        input = {
            {'SynthesisCell', 2},
        },
        output = {
            {'HotNeutroniumPlate', 1},
            {'Cell', 1},
        },
        ticks = 200,
    },
    {
        name = 'HotNeutroniumPlate2',
        machine = 'FusionReactor',
        input = {
            {'SynthesisCell', 1},
            {'UltimateCatalyst', 1},
        },
        output = {
            {'HotNeutroniumPlate', 1},
            {'Cell', 1},
        },
        ticks = 200,
    },
}