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

15 lines
422 B
Lua
Raw Normal View History

2022-12-26 08:36:01 +00:00
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