module Codebreaker module Difficulties class Medium < Base def type DifficultyType::MEDIUM end def attempts 10 end def hints 1 end end end end