Module:Data/Log/InInput

From Evospace
Revision as of 20:00, 31 July 2025 by Evospace (talk | contribs) (Created page with "return { { name = 'CopperItemRack', input = { {'Log', 8}, {'CopperParts', 8}, }, output = { {'CopperItemRack', 1}, }, ticks = 20, tier = 1, }, { name = 'SteelItemRack', input = { {'Log', 8}, {'SteelParts', 8}, }, output = { {'SteelItemRack', 1}, }, ticks = 20, tier = 2, },...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

return {
    {
        name = 'CopperItemRack',
        input = {
            {'Log', 8},
            {'CopperParts', 8},
        },
        output = {
            {'CopperItemRack', 1},
        },
        ticks = 20,
        tier = 1,
    },
    {
        name = 'SteelItemRack',
        input = {
            {'Log', 8},
            {'SteelParts', 8},
        },
        output = {
            {'SteelItemRack', 1},
        },
        ticks = 20,
        tier = 2,
    },
    {
        name = 'AluminiumItemRack',
        input = {
            {'Log', 8},
            {'AluminiumParts', 8},
        },
        output = {
            {'AluminiumItemRack', 1},
        },
        ticks = 20,
        tier = 3,
    },
    {
        name = 'StainlessSteelItemRack',
        input = {
            {'Log', 8},
            {'StainlessSteelParts', 8},
        },
        output = {
            {'StainlessSteelItemRack', 1},
        },
        ticks = 20,
        tier = 4,
    },
    {
        name = 'TitaniumItemRack',
        input = {
            {'Log', 8},
            {'TitaniumParts', 8},
        },
        output = {
            {'TitaniumItemRack', 1},
        },
        ticks = 20,
        tier = 5,
    },
    {
        name = 'CompositeItemRack',
        input = {
            {'Log', 8},
            {'CompositeParts', 8},
        },
        output = {
            {'CompositeItemRack', 1},
        },
        ticks = 20,
        tier = 6,
    },
    {
        name = 'NeutroniumItemRack',
        input = {
            {'Log', 8},
            {'NeutroniumParts', 8},
        },
        output = {
            {'NeutroniumItemRack', 1},
        },
        ticks = 20,
        tier = 7,
    },
    {
        name = 'LogToCoal',
        input = {
            {'Log', 10},
        },
        output = {
            {'Coal', 10},
            {'Creosote', 250},
        },
        ticks = 600,
    },
    {
        name = 'CircuitBoard2',
        input = {
            {'Log', 1},
            {'PolyethyleneSheet', 2},
        },
        output = {
            {'CircuitBoard', 4},
        },
        ticks = 20,
        tier = 4,
    },
    {
        name = 'CircuitBoard',
        input = {
            {'Log', 1},
        },
        output = {
            {'CircuitBoard', 1},
        },
        ticks = 20,
        tier = 1,
    },
    {
        name = 'Capacitor',
        input = {
            {'AluminiumFoil', 2},
            {'Log', 1},
        },
        output = {
            {'Capacitor', 1},
        },
        ticks = 80,
        tier = 1,
    },
    {
        name = 'Log',
        input = {
            {'Log', 1},
        },
        output = {
        },
        ticks = 500.0,
    },
}