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

16 lines
525 B
Lua
Raw Normal View History

2022-12-26 08:36:01 +00:00
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