forked from endernon/PGRData
16 lines
No EOL
438 B
Lua
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 |