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

15 lines
No EOL
422 B
Lua

local XRedPointConditionFubenDailyShop = {}
local Events = nil
function XRedPointConditionFubenDailyShop.GetSubEvents()
Events = Events or {
XRedPointEventElement.New(XEventId.EVENT_FUBEN_DAILY_SHOP_CHECK_NEW),
}
return Events
end
function XRedPointConditionFubenDailyShop.Check(shopItemList)
return XShopManager.CheckDailyShopHasNewSuit(shopItemList)
end
return XRedPointConditionFubenDailyShop