mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
19 lines
350 B
Ruby
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 |