Module:Data/Coke/InInput

From Evospace
Revision as of 10:32, 30 October 2025 by Evospace (talk | contribs)
(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/Coke/InInput/doc

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