Module:Data/Coke/InInput

From Evospace
Jump to navigation Jump to search

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

return {
    {
        name = 'IronDustSmelting',
        input = {
            {'Coke', 10},
            {'IronDust', 10},
        },
        output = {
            {'SteelPlate', 10},
        },
        ticks = 2000,
    },
    {
        name = 'IronPlateSmelting',
        input = {
            {'Coke', 10},
            {'IronPlate', 10},
        },
        output = {
            {'SteelPlate', 10},
        },
        ticks = 2000,
    },
    {
        name = 'PreparedTitaniumOxideCraft',
        input = {
            {'TitaniumOxideDust', 1},
            {'Coke', 2},
        },
        output = {
            {'PreparedTitaniumOxideDust', 1},
        },
        ticks = 200,
    },
    {
        name = 'UltimateCatalyst',
        input = {
            {'Cell', 1},
            {'NeutroniumParts', 2},
            {'Coke', 10},
        },
        output = {
            {'UltimateCatalyst', 1},
        },
        ticks = 200,
        tier = 7,
    },
    {
        name = 'PrimitiveBattery',
        input = {
            {'Coke', 1},
            {'AluminiumParts', 1},
            {'SteelPlate', 1},
        },
        output = {
            {'PrimitiveBattery', 1},
        },
        ticks = 100,
        tier = 3,
    },
    {
        name = 'Coke',
        input = {
            {'Coke', 1},
        },
        output = {
        },
        ticks = 1200.0,
    },
}