Module:Data/Coke/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "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 = 'Prepared..."
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
     {
     {
         name = 'IronDustSmelting',
         name = 'IronDustSmelting',
        machine = 'BlastFurnace',
         input = {
         input = {
             {'Coke', 10},
             {'Coke', 10},
Line 13: Line 14:
     {
     {
         name = 'IronPlateSmelting',
         name = 'IronPlateSmelting',
        machine = 'BlastFurnace',
         input = {
         input = {
             {'Coke', 10},
             {'Coke', 10},
Line 24: Line 26:
     {
     {
         name = 'PreparedTitaniumOxideCraft',
         name = 'PreparedTitaniumOxideCraft',
        machine = 'Mixer',
         input = {
         input = {
             {'TitaniumOxideDust', 1},
             {'TitaniumOxideDust', 1},
Line 35: Line 38:
     {
     {
         name = 'UltimateCatalyst',
         name = 'UltimateCatalyst',
        machine = 'Hand',
         input = {
         input = {
             {'Cell', 1},
             {'Cell', 1},
             {'NeutroniumParts', 2},
             {'NeutroniumParts', 1},
             {'Coke', 10},
             {'Coke', 10},
         },
         },
Line 45: Line 49:
         ticks = 200,
         ticks = 200,
         tier = 7,
         tier = 7,
    },
    {
        name = 'PrimitiveBattery',
        input = {
            {'Coke', 1},
            {'AluminiumParts', 1},
            {'SteelPlate', 1},
        },
        output = {
            {'PrimitiveBattery', 1},
        },
        ticks = 100,
        tier = 3,
     },
     },
     {
     {
         name = 'Coke',
         name = 'Coke',
        machine = 'Furnace',
         input = {
         input = {
             {'Coke', 1},
             {'Coke', 1},

Latest revision as of 21:15, 27 January 2026

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 = 'Coke',
        machine = 'Furnace',
        input = {
            {'Coke', 1},
        },
        output = {
        },
        ticks = 1200.0,
    },
}