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 difference)

Latest revision as of 20:06, 31 July 2025

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

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,
    },
    {
        name = 'Resistor2',
        input = {
            {'CoalDust', 1},
            {'Organics', 1},
            {'GoldWire', 1},
        },
        output = {
            {'Resistor', 2},
        },
        ticks = 60,
        tier = 2,
    },
    {
        name = 'CarbonMonoxide',
        input = {
            {'CoalDust', 1},
            {'Oxygen', 500},
        },
        output = {
            {'CarbonMonoxide', 250},
        },
        ticks = 100,
    },
    {
        name = 'Resistor',
        input = {
            {'CoalDust', 1},
            {'Organics', 1},
            {'CopperWire', 1},
        },
        output = {
            {'Resistor', 1},
        },
        ticks = 60,
        tier = 1,
    },
    {
        name = 'CoalDust',
        input = {
            {'CoalDust', 1},
        },
        output = {
            {'Coal', 1},
        },
        ticks = 50,
        tier = 0,
    },
    {
        name = 'CoalDust',
        input = {
            {'CoalDust', 1},
        },
        output = {
        },
        ticks = 720.0,
    },
}