PGRData/Script/matrix/xredpoint/xredpointconditions/XRedPointConditionFavorabilityAudio.lua

22 lines
No EOL
957 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

----------------------------------------------------------------
--资料检测只关心依赖度等级变化需要参数characterId语音有变化也检查
local XRedPointConditionFavorabilityAudio = {}
local Events = nil
function XRedPointConditionFavorabilityAudio.GetSubEvents()
Events = Events or {
XRedPointEventElement.New(XEventId.EVENT_FAVORABILITY_LEVELCHANGED),
XRedPointEventElement.New(XEventId.EVENT_FAVORABILITY_AUDIOUNLOCK),
}
return Events
end
function XRedPointConditionFavorabilityAudio.Check(checkArgs)
if not checkArgs then return false end
local characterId = checkArgs.CharacterId
if characterId == nil then return false end
local isOpen = XFunctionManager.JudgeCanOpen(XFunctionManager.FunctionName.FavorabilityFile)
if not isOpen then return false end
return XDataCenter.FavorabilityManager.HasAudioToBeUnlock(characterId)
end
return XRedPointConditionFavorabilityAudio