Module:Data/PlatinumReflector/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'CompositeFusionReactor',
         name = 'CompositeFusionReactor',
        machine = 'Hand',
         input = {
         input = {
             {'CopperHeatPipe', 25},
             {'CopperHeatPipe', 25},
Line 18: Line 19:
     {
     {
         name = 'NeutroniumFusionReactor',
         name = 'NeutroniumFusionReactor',
        machine = 'Hand',
         input = {
         input = {
             {'CopperHeatPipe', 25},
             {'CopperHeatPipe', 25},

Latest revision as of 10:32, 30 October 2025

Documentation for this module may be created at Module:Data/PlatinumReflector/InInput/doc

return {
    {
        name = 'CompositeFusionReactor',
        machine = 'Hand',
        input = {
            {'CopperHeatPipe', 25},
            {'CompositePlate', 40},
            {'PlatinumWire', 100},
            {'QuantumProcessor', 15},
            {'PlatinumReflector', 40},
            {'BuildingMaterial', 128},
        },
        output = {
            {'CompositeFusionReactor', 1},
        },
        ticks = 300,
        tier = 6,
    },
    {
        name = 'NeutroniumFusionReactor',
        machine = 'Hand',
        input = {
            {'CopperHeatPipe', 25},
            {'NeutroniumPlate', 40},
            {'YttriumWire', 100},
            {'QuantumBrain', 20},
            {'PlatinumReflector', 40},
            {'BuildingMaterial', 128},
        },
        output = {
            {'NeutroniumFusionReactor', 1},
        },
        ticks = 300,
        tier = 7,
    },
}