Files
hk4e/gdconf/game_data_config/lua/common/MonsterQuickDeath.lua
2022-11-30 00:00:20 +08:00

21 lines
830 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
--[[
=====================================================================================================================
|| 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()