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

16 lines
No EOL
525 B
Lua

local XRedPointConditionSpecialTrainPoint = {}
local Events = nil
function XRedPointConditionSpecialTrainPoint.GetSubEvents()
Events = Events or {
XRedPointEventElement.New(XEventId.EVENT_ITEM_COUNT_UPDATE_PREFIX .. XDataCenter.FubenSpecialTrainManager.GetSpecialTrainPointItemId()),
}
return Events
end
function XRedPointConditionSpecialTrainPoint.Check()
return XDataCenter.FubenSpecialTrainManager.CheckConditionSpecialTrainPointRedPoint()
end
return XRedPointConditionSpecialTrainPoint