#--------------------------------------------------------------------------
# ● 禁用“贵重物品”功能 require Taroxd基础设置
#--------------------------------------------------------------------------
class RPG::Item < RPG::UsableItem
#--------------------------------------------------------------------------
# ● 取消贵重物品属性
#--------------------------------------------------------------------------
def key_item?; false; end
end
class Window_ItemCategory < Window_HorzCommand
#--------------------------------------------------------------------------
# ● 获取列数
#--------------------------------------------------------------------------
def col_max; 3; end
#--------------------------------------------------------------------------
# ● 生成指令列表
#--------------------------------------------------------------------------
def make_command_list
add_command(Vocab::item, :item)
add_command(Vocab::weapon, :weapon)
add_command(Vocab::armor, :armor)
end
end
class Window_KeyItem < Window_ItemList
#--------------------------------------------------------------------------
# ● 种类设定为物品
#--------------------------------------------------------------------------
def_after(:start) { self.category = :item }
#--------------------------------------------------------------------------
# ● 所有道具均可选择
#--------------------------------------------------------------------------
def enable?(item); true; end
end