Activity7GoodsConfig.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. local root = {
  2. {
  3. gConfigId = 1,
  4. id = 1,
  5. item = {type=2,id=1,count=10},
  6. price = {id=104,count=350},
  7. weight = 3000,
  8. level = 1
  9. },
  10. {
  11. gConfigId = 1,
  12. id = 2,
  13. item = {type=2,id=1,count=30},
  14. price = {id=104,count=950},
  15. weight = 2000,
  16. level = 1
  17. },
  18. {
  19. gConfigId = 1,
  20. id = 3,
  21. item = {type=2,id=1,count=70},
  22. price = {id=104,count=2100},
  23. weight = 500,
  24. level = 1
  25. },
  26. {
  27. gConfigId = 1,
  28. id = 4,
  29. item = {type=2,id=2,count=4},
  30. price = {id=104,count=500},
  31. weight = 2500,
  32. level = 3
  33. },
  34. {
  35. gConfigId = 1,
  36. id = 5,
  37. item = {type=2,id=2,count=12},
  38. price = {id=104,count=1440},
  39. weight = 1500,
  40. level = 3
  41. },
  42. {
  43. gConfigId = 1,
  44. id = 6,
  45. item = {type=2,id=2,count=28},
  46. price = {id=104,count=3080},
  47. weight = 300,
  48. level = 3
  49. },
  50. {
  51. gConfigId = 1,
  52. id = 7,
  53. item = {type=2,id=3,count=1},
  54. price = {id=104,count=1500},
  55. weight = 50,
  56. level = 5
  57. },
  58. {
  59. gConfigId = 1,
  60. id = 8,
  61. item = {type=1,id=101,count=1000},
  62. price = {id=104,count=800},
  63. weight = 2500,
  64. level = 1
  65. },
  66. {
  67. gConfigId = 1,
  68. id = 9,
  69. item = {type=1,id=101,count=2000},
  70. price = {id=104,count=1600},
  71. weight = 1500,
  72. level = 1
  73. },
  74. {
  75. gConfigId = 1,
  76. id = 10,
  77. item = {type=1,id=101,count=5000},
  78. price = {id=104,count=4000},
  79. weight = 400,
  80. level = 1
  81. }
  82. }
  83. return root