BuffItemConfig.lua 483 B

1234567891011121314151617181920212223242526272829
  1. local root = {
  2. {
  3. itemId = 501,
  4. type = 1,
  5. items = {301},
  6. math = 2,
  7. time = 86400
  8. },
  9. {
  10. itemId = 502,
  11. type = 1,
  12. items = {401,402,403,404},
  13. math = 2,
  14. time = 86400
  15. },
  16. {
  17. itemId = 503,
  18. type = 2,
  19. items = {401,402,403,404},
  20. math = 99999
  21. },
  22. {
  23. itemId = 504,
  24. type = 2,
  25. items = {401,402,403,404},
  26. math = 1
  27. }
  28. }
  29. return root