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
 
Line 2: Line 2:
     {
     {
         name = 'Catalyst2',
         name = 'Catalyst2',
        machine = 'Assembler',
         input = {
         input = {
             {'Cell', 1},
             {'Cell', 1},
Line 15: Line 16:
     {
     {
         name = 'Catalyst',
         name = 'Catalyst',
        machine = 'Hand',
         input = {
         input = {
             {'Cell', 1},
             {'Cell', 1},

Latest revision as of 10:36, 30 October 2025

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

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