module Eddy module Elements # - Id: 81 # - Name: Weight # - Type: R # - Min/Max: 1/10 # - Description: Numeric value of weight class Weight < Eddy::Element::R # @return [void] def initialize() @id = "81" @name = "Weight" @type = "R" self.min = 1 self.max = 10 end end end end