ClubTaskConfig.lua 966 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. local root = {
  2. {
  3. id = 1001,
  4. groupId = 1,
  5. taskType = 1,
  6. maxProgress = 1,
  7. content = '打开联盟界面1次',
  8. addScore = 10
  9. },
  10. {
  11. id = 2001,
  12. groupId = 2,
  13. taskType = 2,
  14. maxProgress = 1,
  15. content = '在联盟发言1次',
  16. addScore = 15
  17. },
  18. {
  19. id = 3001,
  20. groupId = 3,
  21. taskType = 3,
  22. maxProgress = 1,
  23. content = '围观联盟友谊赛1场',
  24. addScore = 25,
  25. actionId = 16
  26. },
  27. {
  28. id = 3002,
  29. groupId = 4,
  30. taskType = 6,
  31. taskConditions = {1,2,3},
  32. maxProgress = 1,
  33. content = '参与联盟挑战赛1次',
  34. addScore = 30,
  35. actionId = 15
  36. },
  37. {
  38. id = 4001,
  39. groupId = 5,
  40. taskType = 4,
  41. maxProgress = 1,
  42. content = '在联盟商城购买1次',
  43. addScore = 20,
  44. actionId = 14
  45. }
  46. }
  47. return root