2023-07-14 19:35:33 +00:00
|
|
|
-- 兵法蓝图有可升星角色时红点
|
|
|
|
local XRedPointConditionRpgTowerTeamRed = {}
|
|
|
|
local Events = nil
|
|
|
|
function XRedPointConditionRpgTowerTeamRed.GetSubEvents()
|
|
|
|
Events = Events or {
|
2024-09-01 20:49:41 +00:00
|
|
|
XRedPointEventElement.New(XEventId.EVENT_RPGTOWER_MEMBERCHANGE),
|
|
|
|
XRedPointEventElement.New(XEventId.EVENT_RPGTOWER_REFRESH_DAILYREWARD),
|
2023-07-14 19:35:33 +00:00
|
|
|
}
|
|
|
|
return Events
|
|
|
|
end
|
|
|
|
|
|
|
|
function XRedPointConditionRpgTowerTeamRed.Check()
|
|
|
|
return XDataCenter.RpgTowerManager.GetMemberCanActiveTalent()
|
|
|
|
end
|
|
|
|
|
|
|
|
return XRedPointConditionRpgTowerTeamRed
|