RPG::BaseItem

Superclass of Skill, Item, Weapon, and Armor.

Superclass

Attributes

id

The item ID.

name

The item name.

icon_index

The icon number.

description

The description text.

note

The text of the note.

Definition

module RPG
  class Item
    def initialize
      @id = 0
      @name = ""
      @icon_index = 0
      @description = ""
      @note = ""
    end
    attr_accessor :id
    attr_accessor :name
    attr_accessor :icon_index
    attr_accessor :description
    attr_accessor :note
  end
end
Converted from CHM to HTML with chm2web Pro 2.85 (unicode)