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

19 lines
No EOL
556 B
Lua

-- Author: wujie
-- Note: 图鉴武器设定新得时的红点
local XRedPointConditionArchiveAwarenessSettingUnlock = {}
local Events = nil
function XRedPointConditionArchiveAwarenessSettingUnlock.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENET_ARCHIVE_UNLOCK_AWARENESS_SETTING),
}
return Events
end
function XRedPointConditionArchiveAwarenessSettingUnlock.Check(suitId)
return XDataCenter.ArchiveManager.IsNewAwarenessSetting(suitId)
end
return XRedPointConditionArchiveAwarenessSettingUnlock