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