Module:Data/AdvancedCoil/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'TitaniumElectricEngine', input = { {'ReinforcedFrame', 2}, {'TitaniumPlate', 2}, {'AdvancedCoil', 1}, }, output = { {'TitaniumElectricEngine', 1}, }, ticks = 20, tier = 5, }, { name = 'PowerCoil', input = { {'AdvancedCoil', 3}, {'Processor', 2}, }, output = { {'PowerCoil'..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'TitaniumElectricEngine',
         name = 'TitaniumElectricEngine',
        machine = 'Hand',
         input = {
         input = {
             {'ReinforcedFrame', 2},
             {'ReinforcedFrame', 2},
Line 15: Line 16:
     {
     {
         name = 'PowerCoil',
         name = 'PowerCoil',
        machine = 'Hand',
         input = {
         input = {
             {'AdvancedCoil', 3},
             {'AdvancedCoil', 3},

Latest revision as of 10:32, 30 October 2025

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

return {
    {
        name = 'TitaniumElectricEngine',
        machine = 'Hand',
        input = {
            {'ReinforcedFrame', 2},
            {'TitaniumPlate', 2},
            {'AdvancedCoil', 1},
        },
        output = {
            {'TitaniumElectricEngine', 1},
        },
        ticks = 20,
        tier = 5,
    },
    {
        name = 'PowerCoil',
        machine = 'Hand',
        input = {
            {'AdvancedCoil', 3},
            {'Processor', 2},
        },
        output = {
            {'PowerCoil', 1},
        },
        ticks = 200,
        tier = 5,
    },
}