Module:Data/Catalyst/InOutput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'Catalyst2', input = { {'Cell', 1}, {'GoldWire', 10}, {'Coal', 4}, }, output = { {'Catalyst', 1}, }, ticks = 200, tier = 4, }, { name = 'Catalyst', input = { {'Cell', 1}, {'CopperWire', 40}, {'Coal', 4}, }, output = { {'Catalyst', 1}, }, ticks =..."
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
     {
     {
         name = 'Catalyst2',
         name = 'Catalyst2',
        machine = 'Assembler',
         input = {
         input = {
             {'Cell', 1},
             {'Cell', 1},
             {'GoldWire', 10},
             {'GoldWire', 10},
             {'Coal', 4},
             {'CoalDust', 4},
         },
         },
         output = {
         output = {
Line 15: Line 16:
     {
     {
         name = 'Catalyst',
         name = 'Catalyst',
        machine = 'Hand',
         input = {
         input = {
             {'Cell', 1},
             {'Cell', 1},
             {'CopperWire', 40},
             {'CopperWire', 40},
             {'Coal', 4},
             {'CoalDust', 4},
         },
         },
         output = {
         output = {

Latest revision as of 21:21, 27 January 2026

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

return {
    {
        name = 'Catalyst2',
        machine = 'Assembler',
        input = {
            {'Cell', 1},
            {'GoldWire', 10},
            {'CoalDust', 4},
        },
        output = {
            {'Catalyst', 1},
        },
        ticks = 200,
        tier = 4,
    },
    {
        name = 'Catalyst',
        machine = 'Hand',
        input = {
            {'Cell', 1},
            {'CopperWire', 40},
            {'CoalDust', 4},
        },
        output = {
            {'Catalyst', 1},
        },
        ticks = 200,
        tier = 3,
    },
}