c1_lua/lua/app/module/hero/hero_const.lua
2023-07-10 12:00:32 +08:00

23 lines
404 B
Lua

local HeroConst = {}
HeroConst.MATCH_ICON_NAME = {
[1] = "match_1",
[2] = "match_2",
[3] = "match_3",
[4] = "match_4",
[5] = "match_5",
}
HeroConst.CHECK_LV_UP_STATE = {
SUCCESS = 1,
MAX_LV = 2,
NO_COST = 3,
FRAGMENT_NOT_ENOUGH = 4,
COIN_NOT_ENOUGH = 5
}
HeroConst.TRIAL_HERO_ID = 34001 -- 花木兰
HeroConst.TRIAL_HERO_MIN_CHAPTER = 2
HeroConst.TRIAL_HERO_MAX_CHAPTER = 4
return HeroConst