c1_lua/lua/app/config/item.lua
2023-05-11 10:09:29 +08:00

186 lines
2.3 KiB
Lua

local item = {
[1]={
["type"]=1,
["qlt"]=5,
["icon"]="1"
},
[2]={
["type"]=1,
["qlt"]=5,
["icon"]="2"
},
[3]={
["type"]=1,
["qlt"]=5,
["icon"]="3"
},
[4]={
["type"]=3,
["qlt"]=2,
["icon"]="4",
["hero_drop"]={
{
["type"]=1,
["id"]=12001,
["num"]=1,
["weight"]=100
},
{
["type"]=1,
["id"]=22001,
["num"]=1,
["weight"]=100
},
{
["type"]=1,
["id"]=32001,
["num"]=1,
["weight"]=100
},
{
["type"]=1,
["id"]=42001,
["num"]=1,
["weight"]=100
},
{
["type"]=1,
["id"]=52001,
["num"]=1,
["weight"]=100
}
}
},
[5]={
["type"]=3,
["qlt"]=3,
["icon"]="5",
["hero_drop"]={
{
["type"]=1,
["id"]=23001,
["num"]=1,
["weight"]=100
},
{
["type"]=1,
["id"]=33001,
["num"]=1,
["weight"]=100
},
{
["type"]=1,
["id"]=43001,
["num"]=1,
["weight"]=100
}
}
},
[6]={
["type"]=3,
["qlt"]=4,
["icon"]="6",
["hero_drop"]={
{
["type"]=1,
["id"]=23001,
["num"]=1,
["weight"]=100
},
{
["type"]=1,
["id"]=33001,
["num"]=1,
["weight"]=100
},
{
["type"]=1,
["id"]=43001,
["num"]=1,
["weight"]=100
}
}
},
[7]={
["type"]=1,
["qlt"]=5,
["icon"]="7"
},
[8]={
["type"]=4,
["qlt"]=1,
["icon"]="8"
},
[9]={
["type"]=4,
["qlt"]=1,
["icon"]="9"
},
[10]={
["type"]=4,
["qlt"]=1,
["icon"]="10"
},
[11]={
["type"]=4,
["qlt"]=1,
["icon"]="11"
},
[12]={
["type"]=1,
["qlt"]=5,
["icon"]="12"
},
[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=20
}
return config