GuildLvCfg.lua 989 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. local GuildLvCfg = {
  2. [1]={
  3. ['Id']=1,
  4. ['ExpRequire']=5000,
  5. ['PeopleLimit']=35,
  6. ['ActiveLimit']=7000,
  7. ['PeopleAdd']=2,
  8. ['ActiveAdd']=500,
  9. },
  10. [2]={
  11. ['Id']=2,
  12. ['ExpRequire']=8000,
  13. ['PeopleLimit']=37,
  14. ['ActiveLimit']=7500,
  15. ['PeopleAdd']=2,
  16. ['ActiveAdd']=500,
  17. },
  18. [3]={
  19. ['Id']=3,
  20. ['ExpRequire']=16000,
  21. ['PeopleLimit']=39,
  22. ['ActiveLimit']=8000,
  23. ['PeopleAdd']=2,
  24. ['ActiveAdd']=500,
  25. },
  26. [4]={
  27. ['Id']=4,
  28. ['ExpRequire']=30000,
  29. ['PeopleLimit']=41,
  30. ['ActiveLimit']=8500,
  31. ['PeopleAdd']=2,
  32. ['ActiveAdd']=500,
  33. },
  34. [5]={
  35. ['Id']=5,
  36. ['ExpRequire']=50000,
  37. ['PeopleLimit']=43,
  38. ['ActiveLimit']=9000,
  39. ['PeopleAdd']=2,
  40. ['ActiveAdd']=500,
  41. },
  42. [6]={
  43. ['Id']=6,
  44. ['ExpRequire']=90000,
  45. ['PeopleLimit']=45,
  46. ['ActiveLimit']=9500,
  47. ['PeopleAdd']=2,
  48. ['ActiveAdd']=500,
  49. },
  50. [7]={
  51. ['Id']=7,
  52. ['ExpRequire']=120000,
  53. ['PeopleLimit']=47,
  54. ['ActiveLimit']=10000,
  55. ['PeopleAdd']=2,
  56. ['ActiveAdd']=500,
  57. },
  58. [8]={
  59. ['Id']=8,
  60. ['ExpRequire']=0,
  61. ['PeopleLimit']=50,
  62. ['ActiveLimit']=10500,
  63. ['PeopleAdd']=3,
  64. ['ActiveAdd']=500,
  65. },
  66. }
  67. return GuildLvCfg