Module:Data/CoalDust/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'CoalDustToCoke', input = { {'CoalDust', 10}, }, output = { {'Coke', 10}, {'Creosote', 500}, }, ticks = 600, }, { name = 'Steel', input = { {'IronDust', 10}, {'CoalDust', 5}, {'Oxygen', 1000}, }, output = { {'SteelPlate', 10}, }, ticks = 200, }, { n..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'CoalDustToCoke',
         name = 'CoalDustToCoke',
        machine = 'Oven',
         input = {
         input = {
             {'CoalDust', 10},
             {'CoalDust', 10},
Line 13: Line 14:
     {
     {
         name = 'Steel',
         name = 'Steel',
        machine = 'IndustrialSmelter',
         input = {
         input = {
             {'IronDust', 10},
             {'IronDust', 10},
Line 25: Line 27:
     {
     {
         name = 'Resistor2',
         name = 'Resistor2',
        machine = 'Assembler',
         input = {
         input = {
             {'CoalDust', 1},
             {'CoalDust', 1},
Line 38: Line 41:
     {
     {
         name = 'CarbonMonoxide',
         name = 'CarbonMonoxide',
        machine = 'IndustrialChemReactor',
         input = {
         input = {
             {'CoalDust', 1},
             {'CoalDust', 1},
Line 49: Line 53:
     {
     {
         name = 'Resistor',
         name = 'Resistor',
        machine = 'Hand',
         input = {
         input = {
             {'CoalDust', 1},
             {'CoalDust', 1},
Line 62: Line 67:
     {
     {
         name = 'CoalDust',
         name = 'CoalDust',
        machine = 'Smelter',
         input = {
         input = {
             {'CoalDust', 1},
             {'CoalDust', 1},
Line 73: Line 79:
     {
     {
         name = 'CoalDust',
         name = 'CoalDust',
        machine = 'Furnace',
         input = {
         input = {
             {'CoalDust', 1},
             {'CoalDust', 1},

Latest revision as of 10:32, 30 October 2025

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

return {
    {
        name = 'CoalDustToCoke',
        machine = 'Oven',
        input = {
            {'CoalDust', 10},
        },
        output = {
            {'Coke', 10},
            {'Creosote', 500},
        },
        ticks = 600,
    },
    {
        name = 'Steel',
        machine = 'IndustrialSmelter',
        input = {
            {'IronDust', 10},
            {'CoalDust', 5},
            {'Oxygen', 1000},
        },
        output = {
            {'SteelPlate', 10},
        },
        ticks = 200,
    },
    {
        name = 'Resistor2',
        machine = 'Assembler',
        input = {
            {'CoalDust', 1},
            {'Organics', 1},
            {'GoldWire', 1},
        },
        output = {
            {'Resistor', 2},
        },
        ticks = 60,
        tier = 2,
    },
    {
        name = 'CarbonMonoxide',
        machine = 'IndustrialChemReactor',
        input = {
            {'CoalDust', 1},
            {'Oxygen', 500},
        },
        output = {
            {'CarbonMonoxide', 250},
        },
        ticks = 100,
    },
    {
        name = 'Resistor',
        machine = 'Hand',
        input = {
            {'CoalDust', 1},
            {'Organics', 1},
            {'CopperWire', 1},
        },
        output = {
            {'Resistor', 1},
        },
        ticks = 60,
        tier = 1,
    },
    {
        name = 'CoalDust',
        machine = 'Smelter',
        input = {
            {'CoalDust', 1},
        },
        output = {
            {'Coal', 1},
        },
        ticks = 50,
        tier = 0,
    },
    {
        name = 'CoalDust',
        machine = 'Furnace',
        input = {
            {'CoalDust', 1},
        },
        output = {
        },
        ticks = 720.0,
    },
}