加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
#-------------------------------------------------------------------------- # ● 禁用“贵重物品”功能 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
#--------------------------------------------------------------------------
# ● 禁用“贵重物品”功能 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
|