# File lib/quiz1/t/solutions/Florian Gross/solitaire.rb, line 40
    def value
      if special? then 53
      else
        Faces.index(face) + 1 + 13 * Types.index(type)
      end
    end