c1_lua/lua/app/module/runes/runes_const.lua
2023-09-19 10:50:56 +08:00

40 lines
792 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

local RunesConst = {}
RunesConst.GIFT_IDS = {
210102,
210202,
210302,
}
RunesConst.QUALITY_ICON = {
[1] = "hero_rune_f",
[2] = "hero_rune_e",
[3] = "hero_rune_d",
[4] = "hero_rune_c",
[5] = "hero_rune_b",
[6] = "hero_rune_a",
[7] = "hero_rune_s",
[8] = "hero_rune_ss",
}
-- 检查锁定状态
RunesConst.CHECK_QLT_LOCK = 7
-- 最大属性栏位数
RunesConst.MAX_ATTR_GRID_COUNT = 6
-- 品质个数
RunesConst.MAX_QUALITY_COUNT = 8
-- 最大套装个数
RunesConst.MAX_SUITS_COUNT = 5
-- 最大符文种类个数
RunesConst.MAX_ATTR_COUNT = 11
-- 假数据个数
RunesConst.FAKE_DATA_COUNT = 10
-- 自动淬炼频率n次/s
RunesConst.AUTO_INTERVAL = 10
-- 同步服务器数据间隔单位s
RunesConst.SYNC_INTERVAL = 1
return RunesConst