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

14 lines
508 B
Lua
Raw Normal View History

2024-09-01 20:49:41 +00:00
local XRedPointConditionFashionStoryEntrance={}
function XRedPointConditionFashionStoryEntrance.GetSubConditions()
return {
XRedPointConditions.Conditions.CONDITION_FASHION_STORY_NEWCHAPTER_UNLOCK,
XRedPointConditions.Conditions.CONDITION_FASHION_STORY_TASK
}
end
function XRedPointConditionFashionStoryEntrance.Check()
return XRedPointConditionFashionStoryTask.Check() or XRedPointConditionFashionStoryNewChapterUnLock.Check()
end
return XRedPointConditionFashionStoryEntrance