Module:Data/PowerCoil/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'CompositeElectricEngine', input = { {'ModularFrame', 1}, {'CompositePlate', 2}, {'PowerCoil', 1}, }, output = { {'CompositeElectricEngine', 1}, }, ticks = 20, tier = 6, }, { name = 'NeutroniumElectricEngine', input = { {'ModularFrame', 2}, {'NeutroniumPlate', 2}, {'PowerCoil', 2},..."
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'CompositeElectricEngine',
         name = 'CompositeElectricEngine',
        machine = 'Hand',
         input = {
         input = {
             {'ModularFrame', 1},
             {'ModularFrame', 1},
Line 15: Line 16:
     {
     {
         name = 'NeutroniumElectricEngine',
         name = 'NeutroniumElectricEngine',
        machine = 'Hand',
         input = {
         input = {
             {'ModularFrame', 2},
             {'ModularFrame', 2},

Latest revision as of 10:32, 30 October 2025

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

return {
    {
        name = 'CompositeElectricEngine',
        machine = 'Hand',
        input = {
            {'ModularFrame', 1},
            {'CompositePlate', 2},
            {'PowerCoil', 1},
        },
        output = {
            {'CompositeElectricEngine', 1},
        },
        ticks = 20,
        tier = 6,
    },
    {
        name = 'NeutroniumElectricEngine',
        machine = 'Hand',
        input = {
            {'ModularFrame', 2},
            {'NeutroniumPlate', 2},
            {'PowerCoil', 2},
        },
        output = {
            {'NeutroniumElectricEngine', 1},
        },
        ticks = 20,
        tier = 7,
    },
}