Module:Data/CompositePlate/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'CompositePlate',
         name = 'CompositePlate',
        machine = 'Assembler',
         input = {
         input = {
             {'TitaniumPlate', 1},
             {'TitaniumPlate', 1},
Line 15: Line 16:
     {
     {
         name = 'CompositePlate2',
         name = 'CompositePlate2',
        machine = 'Assembler',
         input = {
         input = {
             {'TitaniumPlate', 1},
             {'TitaniumPlate', 1},

Latest revision as of 10:36, 30 October 2025

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

return {
    {
        name = 'CompositePlate',
        machine = 'Assembler',
        input = {
            {'TitaniumPlate', 1},
            {'CarbonFiberSheet', 1},
            {'PolyethyleneSheet', 1},
        },
        output = {
            {'CompositePlate', 1},
        },
        ticks = 300,
        tier = 6,
    },
    {
        name = 'CompositePlate2',
        machine = 'Assembler',
        input = {
            {'TitaniumPlate', 1},
            {'CarbonFiberSheet', 1},
            {'PolyethyleneSheet', 1},
            {'NeutroniumPlate', 1},
        },
        output = {
            {'CompositePlate', 4},
        },
        ticks = 300,
        tier = 7,
    },
}