PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionChapterSectionReward.lua
2022-12-26 14:06:01 +05:30

18 lines
No EOL
551 B
Lua

----------------------------------------------------------------
--节红点检测
local XRedPointConditionChapterSectionReward = {}
local Events = nil
function XRedPointConditionChapterSectionReward.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_FUBEN_CHAPTER_SECTION_REWARD)
}
return Events
end
function XRedPointConditionChapterSectionReward.Check(sectionId)
return XDataCenter.FubenMainLineManager.CheckSectionTreasureReward(sectionId)
end
return XRedPointConditionChapterSectionReward