42 lines
517 B
Lua
42 lines
517 B
Lua
local attr = {
|
|
[1]={
|
|
["id"]=1,
|
|
["name"]="hp"
|
|
},
|
|
[2]={
|
|
["id"]=2,
|
|
["name"]="atk_red"
|
|
},
|
|
[3]={
|
|
["id"]=3,
|
|
["name"]="atk_yellow"
|
|
},
|
|
[4]={
|
|
["id"]=4,
|
|
["name"]="atk_green"
|
|
},
|
|
[5]={
|
|
["id"]=5,
|
|
["name"]="atk_blue"
|
|
},
|
|
[6]={
|
|
["id"]=6,
|
|
["name"]="atk_purple"
|
|
}
|
|
}
|
|
local keys = {
|
|
name = {
|
|
["hp"]=attr[1],
|
|
["atk_red"]=attr[2],
|
|
["atk_yellow"]=attr[3],
|
|
["atk_green"]=attr[4],
|
|
["atk_blue"]=attr[5],
|
|
["atk_purple"]=attr[6]
|
|
}
|
|
}
|
|
local config = {
|
|
data=attr,
|
|
keys=keys,
|
|
count=6
|
|
}
|
|
return config |