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

19 lines
No EOL
506 B
Lua

local XRedPointConditionPracticeAllRedPoint = {}
local SubConditions = nil
function XRedPointConditionPracticeAllRedPoint.GetSubConditions()
SubConditions = SubConditions or
{
XRedPointConditions.Types.CONDITION_PRACTICE_BOSS_CHALLENGE_NEW,
}
return SubConditions
end
function XRedPointConditionPracticeAllRedPoint.Check()
if XRedPointConditionPracticeBossChallengeNew.Check() then
return true
end
return false
end
return XRedPointConditionPracticeAllRedPoint