添加配置表

This commit is contained in:
flswld
2022-11-30 00:00:20 +08:00
parent f70a890338
commit d7f3f3b866
33382 changed files with 8476601 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
--[[
=====================================================================================================================
|| Filename || MonsterQuickDeath 怪物快速死亡引用脚本
|| RelVersion || 2.5
|| Owner || chao.jin
|| Description || 2.5版本,封装的怪物快速死亡引用
|| LogName ||
|| Protection || 防止找不到Affix是否判断如果没有affix则手动插入一个
===================================================================================================================]]
function CITE_Monster_quick_death()
for config_id,infos in pairs(monsters) do
if infos.affix ~= nil then
table.insert(infos.affix, 9009)
else
infos["affix"] = {9009}
end
end
end
CITE_Monster_quick_death()