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
52
53
"use strict";
cc._RF.push(module, 'e1234+r1zlOqqsNC8Dmi66s', 'mall_const');
// Scripts/mod/mall/mall_const.js
 
"use strict";
 
// --------------------------------------------------------------------
// @author: shiraho@syg.com(必填, 创建模块的人员)
// @description:
//      
// <br/>Create: new Date().toISOString()
// --------------------------------------------------------------------
var MallConst = {
  MallType: {
    GodShop: 1,
    //钻石商城
    Recovery: 2,
    //神格商店
    ScoreShop: 3,
    // 积分商店
    VarietyShop: 4,
    //杂货店
    UnionShop: 5,
    //公会商店
    ArenaShop: 6,
    //竞技积分商城
    BossShop: 7,
    //Boss积分商城
    FriendShop: 8,
    //友情商城
    SkillShop: 9,
    //技能商店
    GuessShop: 16,
    // 竞猜兑换
    EliteShop: 17,
    // 精英段位赛
    HeroSkin: 18,
    // 英雄皮肤
    Ladder: 30,
    // 跨服天梯商城
    Seerpalace: 31,
    // 先知殿商城
    ActionShop: 32,
    // 活动商店
    FestivalAction: 33,
    //节日活动购买
    SteriousShop: 35 // 杂货铺
 
  }
};
module.exports = MallConst;
 
cc._RF.pop();