forked from endernon/PGRData
16 lines
478 B
Lua
16 lines
478 B
Lua
|
local XRedPointConditionArchiveMonsterSetting = {}
|
||
|
local Events = nil
|
||
|
|
||
|
function XRedPointConditionArchiveMonsterSetting.GetSubEvents()
|
||
|
Events = Events or
|
||
|
{
|
||
|
XRedPointEventElement.New(XEventId.EVNET_ARCHIVE_MONSTER_UNLOCKMONSTERSETTING),
|
||
|
}
|
||
|
return Events
|
||
|
end
|
||
|
|
||
|
function XRedPointConditionArchiveMonsterSetting.Check(monsterId)
|
||
|
return XDataCenter.ArchiveManager.IsHaveNewMonsterSettingByNpcId(monsterId)
|
||
|
end
|
||
|
|
||
|
return XRedPointConditionArchiveMonsterSetting
|