Module:FusionReactorRecipeDictionary: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'HotNeutroniumPlate1',
         name = 'HotNeutroniumPlate1',
        machine = 'FusionReactor',
         input = {
         input = {
             {'SynthesisCell', 2},
             {'SynthesisCell', 2},
Line 9: Line 10:
             {'Cell', 1},
             {'Cell', 1},
         },
         },
         ticks = 200,
         ticks = 400,
        tier = 6,
     },
     },
     {
     {
         name = 'HotNeutroniumPlate2',
         name = 'HotNeutroniumPlate2',
        machine = 'FusionReactor',
         input = {
         input = {
             {'SynthesisCell', 1},
             {'SynthesisCell', 1},
Line 21: Line 24:
             {'Cell', 1},
             {'Cell', 1},
         },
         },
         ticks = 200,
         ticks = 350,
        tier = 6,
     },
     },
}
}

Latest revision as of 23:01, 27 January 2026

Documentation for this module may be created at Module:FusionReactorRecipeDictionary/doc

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