PGRData/Script/matrix/xredpoint/xredpointconditions/XRedPointConditionGetCard.lua
2024-09-01 22:49:41 +02:00

16 lines
No EOL
438 B
Lua

----------------------------------------------------------------
-- 月卡奖励领取
local XRedPointConditionGetCard = {}
local Events = nil
function XRedPointConditionGetCard.GetSubEvents()
Events = Events or {
XRedPointEventElement.New(XEventId.EVENT_YK_UPDATE),
}
return Events
end
function XRedPointConditionGetCard.Check()
return not XDataCenter.PayManager.IsGotCard()
end
return XRedPointConditionGetCard