PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionChristmasTreeOrnamentActive.lua

17 lines
584 B
Lua
Raw Normal View History

2022-12-26 08:36:01 +00:00
----------------------------------------------------------------
-- 圣诞树装饰小游戏 兑换饰品红点
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