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