Files
infinitefusion-e18/Data/Scripts/050_Outfits/wrappers/Clothes.rb
T
2026-07-10 15:42:06 -04:00

11 lines
279 B
Ruby

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