PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointTRPGWorldBossReward.lua

18 lines
481 B
Lua
Raw Normal View History

2022-12-26 08:36:01 +00:00
----------------------------------------------------------------
--主线跑团世界BOSS红点检测
local XRedPointTRPGWorldBossReward = {}
local Events = nil
function XRedPointTRPGWorldBossReward.GetSubEvents()
Events = Events or {
XRedPointEventElement.New(XEventId.EVENT_TRPG_BOSS_HP_SYN)
}
return Events
end
function XRedPointTRPGWorldBossReward.Check()
return XDataCenter.TRPGManager.CheckWorldBossReward()
end
return XRedPointTRPGWorldBossReward