Fish_SeniorDivideJackpotCFG.lua 1.9 KB

123456789101112131415161718192021222324252627282930
  1. Fish_SeniorDivideJackpotCFG = {}
  2. function Fish_SeniorDivideJackpotCFG:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function Fish_SeniorDivideJackpotCFG:init()
  9. self.datas = {}
  10. self.datas[1] = {ID = 1, Type = 1, Weight = 250, DivideJackpotMin = 5000000, DivideJackpotMax = 6000000}
  11. self.datas[2] = {ID = 2, Type = 1, Weight = 250, DivideJackpotMin = 6000000, DivideJackpotMax = 7000000}
  12. self.datas[3] = {ID = 3, Type = 1, Weight = 200, DivideJackpotMin = 7000000, DivideJackpotMax = 8000000}
  13. self.datas[4] = {ID = 4, Type = 1, Weight = 130, DivideJackpotMin = 8000000, DivideJackpotMax = 9000000}
  14. self.datas[5] = {ID = 5, Type = 1, Weight = 80, DivideJackpotMin = 9000000, DivideJackpotMax = 10000000}
  15. self.datas[6] = {ID = 6, Type = 1, Weight = 60, DivideJackpotMin = 10000000, DivideJackpotMax = 12500000}
  16. self.datas[7] = {ID = 7, Type = 1, Weight = 25, DivideJackpotMin = 12500000, DivideJackpotMax = 15000000}
  17. self.datas[8] = {ID = 8, Type = 1, Weight = 5, DivideJackpotMin = 15000000, DivideJackpotMax = 20000000}
  18. self.datas[9] = {ID = 9, Type = 2, Weight = 250, DivideJackpotMin = 3500000, DivideJackpotMax = 4000000}
  19. self.datas[10] = {ID = 10, Type = 2, Weight = 250, DivideJackpotMin = 4000000, DivideJackpotMax = 4500000}
  20. self.datas[11] = {ID = 11, Type = 2, Weight = 250, DivideJackpotMin = 4500000, DivideJackpotMax = 5500000}
  21. self.datas[12] = {ID = 12, Type = 2, Weight = 100, DivideJackpotMin = 5500000, DivideJackpotMax = 6500000}
  22. self.datas[13] = {ID = 13, Type = 2, Weight = 75, DivideJackpotMin = 6500000, DivideJackpotMax = 7500000}
  23. self.datas[14] = {ID = 14, Type = 2, Weight = 50, DivideJackpotMin = 7500000, DivideJackpotMax = 8500000}
  24. self.datas[15] = {ID = 15, Type = 2, Weight = 20, DivideJackpotMin = 8500000, DivideJackpotMax = 10000000}
  25. self.datas[16] = {ID = 16, Type = 2, Weight = 5, DivideJackpotMin = 10000000, DivideJackpotMax = 12000000}
  26. end
  27. Fish_SeniorDivideJackpotCFG:init()