c1_lua/lua/app/module/hero/hero_const.lua
2023-05-25 15:26:57 +08:00

19 lines
284 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
}
return HeroConst