mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
11 lines
217 B
Ruby
11 lines
217 B
Ruby
class Hat < Outfit
|
|
attr_accessor :type
|
|
def initialize(id,name,description='',price=0,tags=[])
|
|
super
|
|
@type = :HAT
|
|
end
|
|
|
|
def trainer_sprite_path()
|
|
return getTrainerSpriteHatFilename(self.id)
|
|
end
|
|
end |