PGRData/Script/matrix/xredpoint/xredpointconditions/XRedPointConditionFashionStoryEntrance.lua
2024-09-01 22:49:41 +02:00

14 lines
No EOL
508 B
Lua

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