Module:Data/RubyCrystal/InInput: Difference between revisions

From Evospace
Jump to navigation Jump to search
Created page with "return { { name = 'RubyCrystal', input = { {'RubyCrystal', 1}, }, output = { {'RubyDust', 4}, }, ticks = 80, tier = 3, }, { name = 'DecisionResonator2', input = { {'StainlessSteelParts', 4}, {'RubyCrystal', 1}, }, output = { {'DecisionResonator', 2}, }, ticks = 100, tier = 5, }, }"
 
No edit summary
 
Line 2: Line 2:
     {
     {
         name = 'RubyCrystal',
         name = 'RubyCrystal',
        machine = 'Macerator',
         input = {
         input = {
             {'RubyCrystal', 1},
             {'RubyCrystal', 1},
Line 13: Line 14:
     {
     {
         name = 'DecisionResonator2',
         name = 'DecisionResonator2',
        machine = 'Assembler',
         input = {
         input = {
             {'StainlessSteelParts', 4},
             {'StainlessSteelParts', 4},

Latest revision as of 10:32, 30 October 2025

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

return {
    {
        name = 'RubyCrystal',
        machine = 'Macerator',
        input = {
            {'RubyCrystal', 1},
        },
        output = {
            {'RubyDust', 4},
        },
        ticks = 80,
        tier = 3,
    },
    {
        name = 'DecisionResonator2',
        machine = 'Assembler',
        input = {
            {'StainlessSteelParts', 4},
            {'RubyCrystal', 1},
        },
        output = {
            {'DecisionResonator', 2},
        },
        ticks = 100,
        tier = 5,
    },
}