c1_lua/lua/app/module/bounty/bounty_const.lua
2025-09-25 11:40:28 +08:00

15 lines
181 B
Lua
Executable File

local BountyConst = {}
BountyConst.ACT_GIFT_IDS = {
30102,
30202,
}
-- 奖励档位
BountyConst.REWARD_GEAR = {
FREE = 0,
PRO_1 = 1,
PRO_2 = 2,
}
return BountyConst