BattleBoxAwardConfig.lua 569 B

123456789101112131415161718192021222324252627282930313233
  1. local root = {
  2. {
  3. boxId = 2001,
  4. itemId = 10001,
  5. count = 1,
  6. weightByPrice = 1000000
  7. },
  8. {
  9. boxId = 2001,
  10. itemId = 10002,
  11. count = 1,
  12. weightByPrice = 1000000
  13. },
  14. {
  15. boxId = 2001,
  16. itemId = 10003,
  17. count = 1,
  18. weightByPrice = 1000000
  19. },
  20. {
  21. boxId = 2002,
  22. itemId = 10004,
  23. count = 1,
  24. weightByPrice = 100
  25. },
  26. {
  27. boxId = 2002,
  28. itemId = 10005,
  29. count = 1,
  30. weightByPrice = 100
  31. }
  32. }
  33. return root