Module: AlexCodebreaker::Modules::DifficultyLevels

Defined in:
lib/alex_codebreaker/modules/difficulty_levels.rb

Constant Summary collapse

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