c1_lua/lua/app/config/item.lua
2023-04-07 20:50:11 +08:00

134 lines
1.6 KiB
Lua

local item = {
[1]={
["type"]=1,
["qlt"]=0,
["icon"]="1"
},
[2]={
["type"]=1,
["qlt"]=0,
["icon"]="2"
},
[3]={
["type"]=1,
["qlt"]=0,
["icon"]="3"
},
[4]={
["type"]=3,
["qlt"]=2,
["icon"]="4",
["hero_drop"]={
{
["id"]=5001,
["weight"]=100
},
{
["id"]=5002,
["weight"]=100
},
{
["id"]=5003,
["weight"]=100
},
{
["id"]=5004,
["weight"]=100
},
{
["id"]=5005,
["weight"]=100
}
}
},
[5]={
["type"]=3,
["qlt"]=3,
["icon"]="5",
["hero_drop"]={
{
["id"]=5006,
["weight"]=100
},
{
["id"]=5007,
["weight"]=100
},
{
["id"]=5008,
["weight"]=100
}
}
},
[6]={
["type"]=3,
["qlt"]=4,
["icon"]="6",
["hero_drop"]={
{
["id"]=5006,
["weight"]=100
},
{
["id"]=5007,
["weight"]=100
},
{
["id"]=5008,
["weight"]=100
}
}
},
[5001]={
["type"]=5,
["parameter"]=10,
["qlt"]=2,
["icon"]="5001"
},
[5002]={
["type"]=5,
["parameter"]=20,
["qlt"]=2,
["icon"]="5002"
},
[5003]={
["type"]=5,
["parameter"]=30,
["qlt"]=2,
["icon"]="5003"
},
[5004]={
["type"]=5,
["parameter"]=40,
["qlt"]=2,
["icon"]="5004"
},
[5005]={
["type"]=5,
["parameter"]=50,
["qlt"]=2,
["icon"]="5005"
},
[5006]={
["type"]=5,
["parameter"]=60,
["qlt"]=3,
["icon"]="5006"
},
[5007]={
["type"]=5,
["parameter"]=70,
["qlt"]=3,
["icon"]="5007"
},
[5008]={
["type"]=5,
["parameter"]=80,
["qlt"]=3,
["icon"]="5008"
}
}
local config = {
data=item,count=14
}
return config