GameConstData.ts
1.81 KB
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
export namespace GameConstData {
/**商场折扣 */
export const GAME_CONST_MALL_GIFT_DISCOUNT_VALUE = 1;
/**Banner兑换总数 */
export const GAME_CONST_MALL_GIFT_BANNER_EXCHANGETOTAL_VALUE = 2;
/**角色 */
export const GAME_CONST_PLAYER_ROLE_VALUE = 2;
/**金币ID */
export const GAME_CONST_GOLD_ID_VALUE = 1;
/**服装币 */
export const GAME_CONST_CLOTH_ID_VALUE = 2;
/**能量饮料id */
export const GAME_CONST_ENERGY_PROPS_ID = 4;
/**体力 */
export const GAME_CONST_ENERGY_ID_VALUE = 3;
/**剧情固定体力消耗 */
export const GAME_CONST_PLOT_ENERGY_COST_VALUE = 1;
export const GAME_CONST_FIRST_CHAPTER_ID = 46;
export const GAME_CONST_BANNER_REFRESH_TIME = 60;
export const GAME_CONST_LUCKY_DRAW_COST = 120;
export const GAME_CONST_ENERGY_MAX = 100;
export const GAME_CONST_ITEM_BIG_SPR_DIR = "textures/bigSpr/";
export const GAME_CONST_BEDROOMCAT_SPR_DIR = "textures/bedroomCat/";
export const GAME_CONST_BEDROOMCAT_ACTION_SPR_DIR = "textures/bedroomCat/action/";
export const GAME_CONST_BEDROOMCAT_DAY_SPR_DIR = "textures/bedroomCat/day/";
export const GAME_CONST_BEDROOMCAT_SUIT_SPR_DIR = "textures/bedroomCat/suit/";
export const GAME_CONST_BEDROOMCAT_ITEM_SPR_DIR = "textures/bedroomCat/item/";
/**物品和番外ID */
export const GAME_ITEM_AND_SPECIAL_PLOT_ID = 100;
/**油画番外ID */
export const GAME_ITEM_YOUHUA_SPECIAL_PLOT_ID = 101;
/**解锁全部剧情广告的ID */
export const UNLOCK_PLOT_WITHOUT_AD = 1001;
/**改变人物好感度 */
export const CHANGE_ROLE_LIKE = 2000;
/**增加猫粮数量 */
export const ADD_BEDROOMCAT_CATFOOD = 3000;
/**发放套装部件 */
export const ADD_CLOTHING_ID = 4000;
}