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

16 lines
460 B
Lua
Raw Normal View History

2022-12-26 14:06:01 +05:30
local XRedPointConditionMainLineTreasure = {}
local Events = nil
function XRedPointConditionMainLineTreasure.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_FUBEN_CHAPTER_REWARD)
}
return Events
end
function XRedPointConditionMainLineTreasure.Check(chapterId)
return XDataCenter.FubenMainLineManager.CheckTreasureReward(chapterId)
end
return XRedPointConditionMainLineTreasure