module AlexCodebreaker module Modules module DifficultyLevels DIFFICULTY_LEVELS = { easy: { name: 'Easy', level: 0, attempts_total: 15, hints_total: 2 }, medium: { name: 'Medium', level: 1, attempts_total: 10, hints_total: 1 }, hell: { name: 'Hell', level: 2, attempts_total: 5, hints_total: 1 } }.freeze end end end