Module:Data/PlutoniumCell/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'TitaniumRiteg', input = { {'PlutoniumCell', 1}, {'BasicFrame', 2}, {'TitaniumPlate', 8}, {'CopperPipe', 20}, }, output = { {'TitaniumRiteg', 1}, }, ticks = 100, tier = 5, }, { name = 'CompositeRiteg', input = { {'PlutoniumCell', 1}, {'ReinforcedFrame', 2}, {'CompositePlate',..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'TitaniumRiteg',
         name = 'TitaniumRiteg',
        machine = 'Hand',
         input = {
         input = {
             {'PlutoniumCell', 1},
             {'PlutoniumCell', 1},
Line 16: Line 17:
     {
     {
         name = 'CompositeRiteg',
         name = 'CompositeRiteg',
        machine = 'Hand',
         input = {
         input = {
             {'PlutoniumCell', 1},
             {'PlutoniumCell', 1},
Line 30: Line 32:
     {
     {
         name = 'NeutroniumRiteg',
         name = 'NeutroniumRiteg',
        machine = 'Hand',
         input = {
         input = {
             {'PlutoniumCell', 1},
             {'PlutoniumCell', 1},
Line 44: Line 47:
     {
     {
         name = 'PlutoniumCell',
         name = 'PlutoniumCell',
        machine = 'FissionReactor',
         input = {
         input = {
             {'PlutoniumCell', 1},
             {'PlutoniumCell', 1},
Line 57: Line 61:
     {
     {
         name = 'PlutoniumCell2',
         name = 'PlutoniumCell2',
        machine = 'FissionReactor',
         input = {
         input = {
             {'PlutoniumCell', 1},
             {'PlutoniumCell', 1},

Latest revision as of 10:32, 30 October 2025

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

return {
    {
        name = 'TitaniumRiteg',
        machine = 'Hand',
        input = {
            {'PlutoniumCell', 1},
            {'BasicFrame', 2},
            {'TitaniumPlate', 8},
            {'CopperPipe', 20},
        },
        output = {
            {'TitaniumRiteg', 1},
        },
        ticks = 100,
        tier = 5,
    },
    {
        name = 'CompositeRiteg',
        machine = 'Hand',
        input = {
            {'PlutoniumCell', 1},
            {'ReinforcedFrame', 2},
            {'CompositePlate', 8},
            {'CopperPipe', 25},
        },
        output = {
            {'CompositeRiteg', 1},
        },
        ticks = 100,
        tier = 6,
    },
    {
        name = 'NeutroniumRiteg',
        machine = 'Hand',
        input = {
            {'PlutoniumCell', 1},
            {'ReinforcedFrame', 4},
            {'NeutroniumPlate', 8},
            {'CopperPipe', 30},
        },
        output = {
            {'NeutroniumRiteg', 1},
        },
        ticks = 100,
        tier = 7,
    },
    {
        name = 'PlutoniumCell',
        machine = 'FissionReactor',
        input = {
            {'PlutoniumCell', 1},
            {'ReflectorCell', 4},
            {'ThoriumCell', 3},
        },
        output = {
            {'Uranium233Cell', 3},
            {'DepletedUraniumCell', 1},
        },
        ticks = 400,
    },
    {
        name = 'PlutoniumCell2',
        machine = 'FissionReactor',
        input = {
            {'PlutoniumCell', 1},
            {'ReflectorCell', 8},
            {'ThoriumCell', 6},
        },
        output = {
            {'Uranium233Cell', 6},
            {'DepletedUraniumCell', 1},
        },
        ticks = 400,
    },
}