RPG::Item

物品的数据类。

超类

属性

itype_id

物品类型 ID。

price

价格。

consumable

是否为消耗品。

方法

key_item?

判断物品是否为[贵重物品],当 itype_id 值为 2 时返回 true。

定义

class RPG::Item < RPG::UsableItem
  def initialize
    super
    @scope = 7
    @itype_id = 1
    @price = 0
    @consumable = true
  end
  def key_item?
    @itype_id == 2
  end
  attr_accessor :itype_id
  attr_accessor :price
  attr_accessor :consumable
end