M_ActivityDoubleElevenDiamondGift.lua 603 B

1234567891011121314151617
  1. M_ActivityDoubleElevenDiamondGift = {}
  2. function M_ActivityDoubleElevenDiamondGift:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function M_ActivityDoubleElevenDiamondGift:init()
  9. self.datas = {}
  10. self.datas[1] = {ID = 1, FlushTime = 0, Gift1Count = 100, Gift2Count = 10, Gift3Count = 2, GiftId = 320}
  11. self.datas[2] = {ID = 2, FlushTime = 12, Gift1Count = 100, Gift2Count = 10, Gift3Count = 2, GiftId = 321}
  12. self.datas[3] = {ID = 3, FlushTime = 20, Gift1Count = 100, Gift2Count = 10, Gift3Count = 2, GiftId = 322}
  13. end
  14. M_ActivityDoubleElevenDiamondGift:init()