Files
infinitefusion-e18/Data/Scripts/050_Outfits/wrappers/Clothes.rb
2024-12-21 09:43:11 -05:00

11 lines
235 B
Ruby

class Clothes < Outfit
attr_accessor :type
def initialize(id, name, description = '',price=0, tags = [])
super
@type = :CLOTHES
end
def trainer_sprite_path()
return getTrainerSpriteOutfitFilename(self.id)
end
end