M_StarLotteryVIPChipEachDayLimitCFG.lua 655 B

123456789101112131415161718192021
  1. M_StarLotteryVIPChipEachDayLimitCFG = {}
  2. function M_StarLotteryVIPChipEachDayLimitCFG:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function M_StarLotteryVIPChipEachDayLimitCFG:init()
  9. self.datas = {}
  10. self.datas[1] = {CreateDays = 1, GetMaxChip = 320}
  11. self.datas[2] = {CreateDays = 2, GetMaxChip = 215}
  12. self.datas[3] = {CreateDays = 3, GetMaxChip = 200}
  13. self.datas[4] = {CreateDays = 4, GetMaxChip = 100}
  14. self.datas[5] = {CreateDays = 5, GetMaxChip = 120}
  15. self.datas[6] = {CreateDays = 6, GetMaxChip = 160}
  16. self.datas[7] = {CreateDays = 7, GetMaxChip = 180}
  17. end
  18. M_StarLotteryVIPChipEachDayLimitCFG:init()