Sha256: 03df1482ba7c8dee2e8367282da1c217d8edd2342da726d74c90e841d5e26f0e

Contents?: true

Size: 368 Bytes

Versions: 2

Compression:

Stored size: 368 Bytes

Contents

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
alex_codebreaker-0.1.6 lib/alex_codebreaker/modules/difficulty_levels.rb
alex_codebreaker-0.1.5 lib/alex_codebreaker/modules/difficulty_levels.rb