c1_lua/lua/app/module/shop/shop_const.lua
2023-05-31 15:41:42 +08:00

46 lines
1.2 KiB
Lua

local ShopConst = {}
ShopConst.FIRST_RECHARGE_ID = 10102 -- 首充礼包ID
ShopConst.BEGINNER_GIFT_ID = 40102 -- 新手礼包ID
ShopConst.MAIN_UI_POP_TYPE = { -- 当触发弹窗时,相关联的类型礼包也要触发
[PayManager.PURCHARSE_TYPE.ACT_GIFT] = {
[PayManager.PURCHARSE_ACT_TYPE.BEGINNER_GIFT] = true,
[PayManager.PURCHARSE_ACT_TYPE.LEVEL_UP_GIFT] = true,
},
[PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = true
}
ShopConst.BOX_REWARD_TYPE = {
SUMMON = 1,
BOUNTY = 2,
}
ShopConst.GEM_ICON_NAME = {
[1] = "shop_diamond_1",
[2] = "shop_diamond_1",
[3] = "shop_diamond_2",
[4] = "shop_diamond_3",
[5] = "shop_diamond_4",
[6] = "shop_diamond_5",
[7] = "shop_diamond_6",
[8] = "shop_diamond_7",
[9] = "shop_diamond_8",
[10] = "shop_diamond_8",
[11] = "shop_diamond_8",
[12] = "shop_diamond_8",
[13] = "shop_diamond_8",
[14] = "shop_diamond_8",
[15] = "shop_diamond_8",
[16] = "shop_diamond_8",
[17] = "shop_diamond_8",
[18] = "shop_diamond_8",
[19] = "shop_diamond_8",
[20] = "shop_diamond_8",
}
ShopConst.COIN_ICON_NAME = {
[1] = "shop_species_1",
[2] = "shop_species_2",
[3] = "shop_species_3",
}
return ShopConst