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

34 lines
883 B
Lua
Raw Normal View History

local Events = nil
local SubCondition = nil
local XRedPointConditionKillZoneActivity = {}
function XRedPointConditionKillZoneActivity.GetSubConditions()
SubCondition = SubCondition or {
XRedPointConditions.Types.XRedPointConditionKillZoneStarReward,
XRedPointConditions.Types.XRedPointConditionKillZoneDailyStarReward,
}
return SubCondition
end
function XRedPointConditionKillZoneActivity.Check(chapterId)
if not XFunctionManager.JudgeCanOpen(XFunctionManager.FunctionName.KillZone) then
return false
end
if not XDataCenter.KillZoneManager.IsOpen() then
return false
end
if XDataCenter.KillZoneManager.IsAnyStarRewardCanGet() then
return true
end
if XRedPointConditionKillZoneDailyStarReward.Check() then
return true
end
return false
end
return XRedPointConditionKillZoneActivity