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

19 lines
350 B
Ruby

class Outfit
attr_accessor :id
attr_accessor :name
attr_accessor :description
attr_accessor :tags
attr_accessor :price
def initialize(id, name, description = '',price=0, tags = [])
@id = id
@name = name
@description = description
@tags = tags
@price = price
end
def trainer_sprite_path()
return nil
end
end