forked from endernon/PGRData
19 lines
506 B
Lua
19 lines
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
|