BlindBoxAwardConfig.lua 571 B

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