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

15 lines
No EOL
453 B
Lua

-- 兵法蓝图有可升星角色时红点
local XRedPointConditionRpgTowerTeamRed = {}
local Events = nil
function XRedPointConditionRpgTowerTeamRed.GetSubEvents()
Events = Events or {
XRedPointEventElement.New(XEventId.EVENT_RPGTOWER_MEMBERCHANGE)
}
return Events
end
function XRedPointConditionRpgTowerTeamRed.Check()
return XDataCenter.RpgTowerManager.GetMemberCanActiveTalent()
end
return XRedPointConditionRpgTowerTeamRed