PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionChristmasTreeOrnamentActive.lua
2022-12-26 14:06:01 +05:30

17 lines
No EOL
584 B
Lua

----------------------------------------------------------------
-- 圣诞树装饰小游戏 兑换饰品红点
local XRedPointConditionChristmasTreeOrnamentActive = {}
local Events = nil
function XRedPointConditionChristmasTreeOrnamentActive.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_CHRISTMAS_TREE_ORNAMENT_ACTIVE),
}
return Events
end
function XRedPointConditionChristmasTreeOrnamentActive.Check()
return XDataCenter.ChristmasTreeManager.CheckCanGetOrnament()
end
return XRedPointConditionChristmasTreeOrnamentActive