1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- local root = {
- {
- id = 1001,
- groupId = 1,
- taskType = 1,
- maxProgress = 1,
- content = '打开联盟界面1次',
- addScore = 10
- },
- {
- id = 2001,
- groupId = 2,
- taskType = 2,
- maxProgress = 1,
- content = '在联盟发言1次',
- addScore = 15
- },
- {
- id = 3001,
- groupId = 3,
- taskType = 3,
- maxProgress = 1,
- content = '围观联盟友谊赛1场',
- addScore = 25,
- actionId = 16
- },
- {
- id = 3002,
- groupId = 4,
- taskType = 6,
- taskConditions = {1,2,3},
- maxProgress = 1,
- content = '参与联盟挑战赛1次',
- addScore = 30,
- actionId = 15
- },
- {
- id = 4001,
- groupId = 5,
- taskType = 4,
- maxProgress = 1,
- content = '在联盟商城购买1次',
- addScore = 20,
- actionId = 14
- }
- }
- return root
|