Module:Data/CompositePlate/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'CompositePlate', input = { {'TitaniumPlate', 1}, {'CarbonFiberSheet', 1}, {'PolyethyleneSheet', 1}, }, output = { {'CompositePlate', 1}, }, ticks = 300, tier = 6, }, { name = 'CompositePlate2', input = { {'TitaniumPlate', 1}, {'CarbonFiberSheet', 1}, {'PolyethyleneSheet', 1},..."
 
No edit summary
 
(One intermediate revision by the same user not shown)
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},
             {'CarbonFiberSheet', 1},
             {'CarbonFiberSheet', 1},
             {'PolyethyleneSheet', 1},
             {'PolyethyleneSheet', 1},
             {'NeutroniumParts', 1},
             {'NeutroniumPlate', 1},
         },
         },
         output = {
         output = {

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,
    },
}