Sha256: 1c47f12733374fe3836b852d1c84e0182bdcbea0dd2b4774cb94a70d25781204
Contents?: true
Size: 509 Bytes
Versions: 1
Compression:
Stored size: 509 Bytes
Contents
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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
alex_codebreaker-0.1.7 | lib/alex_codebreaker/modules/difficulty_levels.rb |