GoldConfig.lua 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. local root = {
  2. {
  3. level = 1,
  4. goldDeposit = 50,
  5. itemCost = {{id=101,count=75},{id=401,count=25},{id=402,count=25},{id=403,count=25},{id=404,count=25}}
  6. },
  7. {
  8. level = 2,
  9. goldDeposit = 75,
  10. itemCost = {{id=101,count=100},{id=401,count=50},{id=402,count=50},{id=403,count=50},{id=404,count=50}}
  11. },
  12. {
  13. level = 3,
  14. goldDeposit = 100,
  15. itemCost = {{id=101,count=125},{id=401,count=100},{id=402,count=100},{id=403,count=100},{id=404,count=100}}
  16. },
  17. {
  18. level = 4,
  19. goldDeposit = 125,
  20. itemCost = {{id=101,count=225},{id=401,count=125},{id=402,count=125},{id=403,count=125},{id=404,count=125}}
  21. },
  22. {
  23. level = 5,
  24. goldDeposit = 150,
  25. itemCost = {{id=101,count=260},{id=401,count=150},{id=402,count=150},{id=403,count=150},{id=404,count=150}}
  26. },
  27. {
  28. level = 6,
  29. goldDeposit = 175,
  30. itemCost = {{id=101,count=300},{id=401,count=200},{id=402,count=200},{id=403,count=200},{id=404,count=200}}
  31. },
  32. {
  33. level = 7,
  34. goldDeposit = 200,
  35. itemCost = {{id=101,count=350},{id=401,count=250},{id=402,count=250},{id=403,count=250},{id=404,count=250}}
  36. },
  37. {
  38. level = 8,
  39. goldDeposit = 225,
  40. itemCost = {{id=101,count=500},{id=401,count=300},{id=402,count=300},{id=403,count=300},{id=404,count=300}}
  41. },
  42. {
  43. level = 9,
  44. goldDeposit = 250,
  45. itemCost = {{id=101,count=600},{id=401,count=350},{id=402,count=350},{id=403,count=350},{id=404,count=350}}
  46. },
  47. {
  48. level = 10,
  49. goldDeposit = 300,
  50. itemCost = {{id=101,count=1500},{id=401,count=550},{id=402,count=550},{id=403,count=550},{id=404,count=550}}
  51. },
  52. {
  53. level = 11,
  54. goldDeposit = 500,
  55. itemCost = {{id=101,count=2800},{id=401,count=1000},{id=402,count=1000},{id=403,count=1000},{id=404,count=1000}}
  56. },
  57. {
  58. level = 12,
  59. goldDeposit = 700,
  60. itemCost = {{id=101,count=4000},{id=401,count=1200},{id=402,count=1200},{id=403,count=1200},{id=404,count=1200}}
  61. },
  62. {
  63. level = 13,
  64. goldDeposit = 1000,
  65. itemCost = {{id=101,count=9100},{id=401,count=1400},{id=402,count=1400},{id=403,count=1400},{id=404,count=1400}}
  66. },
  67. {
  68. level = 14,
  69. goldDeposit = 1300,
  70. itemCost = {{id=101,count=11200},{id=401,count=1600},{id=402,count=1600},{id=403,count=1600},{id=404,count=1600}}
  71. },
  72. {
  73. level = 15,
  74. goldDeposit = 1600,
  75. itemCost = {{id=101,count=14000},{id=401,count=1900},{id=402,count=1900},{id=403,count=1900},{id=404,count=1900}}
  76. },
  77. {
  78. level = 16,
  79. goldDeposit = 2000,
  80. itemCost = {{id=101,count=17000},{id=401,count=2200},{id=402,count=2200},{id=403,count=2200},{id=404,count=2200}}
  81. },
  82. {
  83. level = 17,
  84. goldDeposit = 2400,
  85. itemCost = {{id=101,count=20000},{id=401,count=2700},{id=402,count=2700},{id=403,count=2700},{id=404,count=2700}}
  86. },
  87. {
  88. level = 18,
  89. goldDeposit = 3000,
  90. itemCost = {{id=101,count=24000},{id=401,count=3200},{id=402,count=3200},{id=403,count=3200},{id=404,count=3200}}
  91. },
  92. {
  93. level = 19,
  94. goldDeposit = 3600,
  95. itemCost = {{id=101,count=30000},{id=401,count=4000},{id=402,count=4000},{id=403,count=4000},{id=404,count=4000}}
  96. },
  97. {
  98. level = 20,
  99. goldDeposit = 4200,
  100. itemCost = {{id=101,count=36000},{id=401,count=4800},{id=402,count=4800},{id=403,count=4800},{id=404,count=4800}}
  101. },
  102. {
  103. level = 21,
  104. goldDeposit = 5000,
  105. itemCost = {{id=101,count=47250},{id=401,count=5700},{id=402,count=5700},{id=403,count=5700},{id=404,count=5700}}
  106. },
  107. {
  108. level = 22,
  109. goldDeposit = 5800,
  110. itemCost = {{id=101,count=58000},{id=401,count=6000},{id=402,count=6000},{id=403,count=6000},{id=404,count=6000}}
  111. },
  112. {
  113. level = 23,
  114. goldDeposit = 7000,
  115. itemCost = {{id=101,count=100000},{id=401,count=6000},{id=402,count=6000},{id=403,count=6000},{id=404,count=6000}}
  116. }
  117. }
  118. return root