mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-07 13:15:01 +00:00
12 lines
233 B
Ruby
12 lines
233 B
Ruby
class Hairstyle < Outfit
|
|
attr_accessor :type
|
|
def initialize(id, name, description = '',price=0, tags = [])
|
|
super
|
|
@type = :HAIR
|
|
end
|
|
|
|
def trainer_sprite_path()
|
|
return getTrainerSpriteHairFilename(self.id)
|
|
end
|
|
|
|
end |