c1_lua/lua/app/config/item.lua
2023-04-19 20:50:41 +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
}
}
},
[12001]={
["type"]=5,
["parameter"]=12001,
["qlt"]=2,
["icon"]="12001"
},
[22001]={
["type"]=5,
["parameter"]=22001,
["qlt"]=2,
["icon"]="22001"
},
[23001]={
["type"]=5,
["parameter"]=23001,
["qlt"]=3,
["icon"]="23001"
},
[32001]={
["type"]=5,
["parameter"]=32001,
["qlt"]=2,
["icon"]="32001"
},
[33001]={
["type"]=5,
["parameter"]=33001,
["qlt"]=3,
["icon"]="33001"
},
[42001]={
["type"]=5,
["parameter"]=42001,
["qlt"]=2,
["icon"]="42001"
},
[43001]={
["type"]=5,
["parameter"]=43001,
["qlt"]=3,
["icon"]="43001"
},
[52001]={
["type"]=5,
["parameter"]=52001,
["qlt"]=2,
["icon"]="52001"
}
}
local config = {
data=item,count=14
}
return config