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

15 lines
No EOL
451 B
Lua

local XRedPointConditionExtraTreasure = {}
local Events = nil
function XRedPointConditionExtraTreasure.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_FUBEN_EXTRACHAPTER_REWARD)
}
return Events
end
function XRedPointConditionExtraTreasure.Check(chapterId)
return XDataCenter.ExtraChapterManager.CheckTreasureReward(chapterId)
end
return XRedPointConditionExtraTreasure