difenduandada
2024-12-31 34abe6963b344c882358274957f4b992456fee40
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"use strict";
cc._RF.push(module, 'b59f7ec4O9ANKGC1/ieYxNM', 'task_const');
// Scripts/mod/task/task_const.js
 
"use strict";
 
// --------------------------------------------------------------------
// @author: shiraho@syg.com(必填, 创建模块的人员)
// @description:
//      
// <br/>Create: new Date().toISOString()
// --------------------------------------------------------------------
var TaskConst = {
  type: {
    quest: 1,
    feat: 2,
    action: 3
  },
  action_status: {
    normal: 0,
    un_activity: 1,
    activity: 2,
    finish: 3
  },
  update_type: {
    quest: 1,
    feat: 2,
    activity: 3
  },
  task_type: {
    main: 1,
    // 主线任务
    branch: 2,
    // 支线任务
    daily: 3 // 日常任务
 
  },
  task_status: {
    un_finish: 0,
    // 进行中
    finish: 1,
    //可提交
    completed: 2,
    //已提交
    over: 3 // 已过期
 
  }
};
module.exports = TaskConst;
 
cc._RF.pop();