c1_lua/lua/app/config/hero.lua
2023-04-03 10:59:13 +08:00

42 lines
559 B
Lua

local hero = {
[60001]={
["atk"]={
["value"]=1000000,
["unit"]=0
},
["hp"]={
["value"]=6000000,
["unit"]=0
},
["recover"]={
["value"]=0,
["unit"]=0
},
["spd"]={
["value"]=100,
["unit"]=0
},
["crit"]={
["value"]=0,
["unit"]=0
},
["crit_time"]={
["value"]=15000,
["unit"]=0
},
["atk_interval"]={
["value"]=300,
["unit"]=0
},
["hero_card"]="hero_head_1",
["model_id"]="p0001",
["airborne_num"]={
["value"]=3,
["unit"]=0
}
}
}
local config = {
data=hero,count=1
}
return config