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

30 lines
No EOL
914 B
Lua

----------------------------------------------------------------
--角色技能红点检测
local XRedPointConditionCharacterSkill = {}
local Events = nil
function XRedPointConditionCharacterSkill.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_CHARACTER_LEVEL_UP),
XRedPointEventElement.New(XEventId.EVENT_CHARACTER_SKILL_UP),
XRedPointEventElement.New(XEventId.EVENT_CHARACTER_QUALITY_PROMOTE),
XRedPointEventElement.New(XEventId.EVENT_CHARACTER_SKILL_UNLOCK),
}
return Events
end
function XRedPointConditionCharacterSkill.Check(characterId)
if not characterId then
return false
end
if not XFunctionManager.JudgeOpen(XFunctionManager.FunctionName.CharacterSkill) then
return false
end
return XDataCenter.CharacterManager.CanPromoteSkill(characterId)
end
return XRedPointConditionCharacterSkill