Module:Data/PlatinumWire/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
     {
     {
         name = 'CompositeGenerator',
         name = 'CompositeGenerator',
        machine = 'Hand',
         input = {
         input = {
             {'CompositePlate', 8},
             {'CompositePlate', 8},
Line 16: Line 17:
     {
     {
         name = 'CompositeIndustrialGenerator',
         name = 'CompositeIndustrialGenerator',
        machine = 'Hand',
         input = {
         input = {
             {'CompositePlate', 24},
             {'CompositePlate', 24},
Line 30: Line 32:
     {
     {
         name = 'CompositeCompactGenerator',
         name = 'CompositeCompactGenerator',
        machine = 'Hand',
         input = {
         input = {
             {'CompositePlate', 1},
             {'CompositePlate', 1},
Line 43: Line 46:
     {
     {
         name = 'CompositeArcSmelter',
         name = 'CompositeArcSmelter',
        machine = 'Hand',
         input = {
         input = {
             {'BuildingMaterial', 32},
             {'BuildingMaterial', 32},
Line 56: Line 60:
     {
     {
         name = 'CompositeElectricFurnace',
         name = 'CompositeElectricFurnace',
        machine = 'Hand',
         input = {
         input = {
             {'CompositePlate', 3},
             {'CompositePlate', 3},
Line 69: Line 74:
     {
     {
         name = 'CompositeFusionReactor',
         name = 'CompositeFusionReactor',
        machine = 'Hand',
         input = {
         input = {
             {'CopperHeatPipe', 25},
             {'CopperHeatPipe', 25},
Line 85: Line 91:
     {
     {
         name = 'CompositeIndustrialSmelter',
         name = 'CompositeIndustrialSmelter',
        machine = 'Hand',
         input = {
         input = {
             {'PlatinumWire', 32},
             {'PlatinumWire', 32},
Line 98: Line 105:
     },
     },
     {
     {
         name = 'Transistor4',
         name = 'PlatinumWire',
        machine = 'Macerator',
         input = {
         input = {
            {'DopedSiliconWafer', 1},
             {'PlatinumWire', 2},
             {'PlatinumWire', 2},
            {'PolyethyleneSheet', 1},
         },
         },
         output = {
         output = {
             {'Transistor', 16},
             {'PlatinumDust', 1},
         },
         },
         ticks = 60,
         ticks = 80,
         tier = 4,
         tier = 5,
     },
     },
}
}

Latest revision as of 15:47, 24 August 2026

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

return {
    {
        name = 'CompositeGenerator',
        machine = 'Hand',
        input = {
            {'CompositePlate', 8},
            {'PlatinumWire', 12},
            {'ModularFrame', 1},
            {'QuantumProcessor', 1},
        },
        output = {
            {'CompositeGenerator', 1},
        },
        ticks = 20,
        tier = 6,
    },
    {
        name = 'CompositeIndustrialGenerator',
        machine = 'Hand',
        input = {
            {'CompositePlate', 24},
            {'PlatinumWire', 36},
            {'ReinforcedFrame', 3},
            {'QuantumProcessor', 3},
        },
        output = {
            {'CompositeIndustrialGenerator', 1},
        },
        ticks = 20,
        tier = 6,
    },
    {
        name = 'CompositeCompactGenerator',
        machine = 'Hand',
        input = {
            {'CompositePlate', 1},
            {'PlatinumWire', 2},
            {'ModularFrame', 1},
        },
        output = {
            {'CompositeCompactGenerator', 1},
        },
        ticks = 20,
        tier = 6,
    },
    {
        name = 'CompositeArcSmelter',
        machine = 'Hand',
        input = {
            {'BuildingMaterial', 32},
            {'CompositeParts', 4},
            {'PlatinumWire', 5},
        },
        output = {
            {'CompositeArcSmelter', 1},
        },
        ticks = 20,
        tier = 6,
    },
    {
        name = 'CompositeElectricFurnace',
        machine = 'Hand',
        input = {
            {'CompositePlate', 3},
            {'PlatinumWire', 18},
            {'BuildingMaterial', 6},
        },
        output = {
            {'CompositeElectricFurnace', 1},
        },
        ticks = 20,
        tier = 6,
    },
    {
        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 = 'CompositeIndustrialSmelter',
        machine = 'Hand',
        input = {
            {'PlatinumWire', 32},
            {'CompositePlate', 12},
            {'ReinforcedFrame', 6},
            {'BuildingMaterial', 64},
        },
        output = {
            {'CompositeIndustrialSmelter', 1},
        },
        ticks = 80,
        tier = 6,
    },
    {
        name = 'PlatinumWire',
        machine = 'Macerator',
        input = {
            {'PlatinumWire', 2},
        },
        output = {
            {'PlatinumDust', 1},
        },
        ticks = 80,
        tier = 5,
    },
}