PveStarsChapterAwardConfig.lua 716 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. local root = {
  2. {
  3. chapterId = 1,
  4. id = 1,
  5. points = 4,
  6. items = {{id=101,count=80}}
  7. },
  8. {
  9. chapterId = 1,
  10. id = 2,
  11. points = 6,
  12. items = {{id=101,count=90}}
  13. },
  14. {
  15. chapterId = 1,
  16. id = 3,
  17. points = 7,
  18. items = {{id=101,count=100},{id=102,count=50}}
  19. },
  20. {
  21. chapterId = 2,
  22. id = 1,
  23. points = 10,
  24. items = {{id=101,count=80}}
  25. },
  26. {
  27. chapterId = 2,
  28. id = 2,
  29. points = 20,
  30. items = {{id=101,count=90}}
  31. },
  32. {
  33. chapterId = 2,
  34. id = 3,
  35. points = 30,
  36. items = {{id=101,count=100},{id=102,count=50}}
  37. }
  38. }
  39. return root