162 lines
2.4 KiB
Lua
162 lines
2.4 KiB
Lua
local buff = {
|
|
[7]={
|
|
["id"]=7,
|
|
["name"]="dec_dmg_red_add"
|
|
},
|
|
[8]={
|
|
["id"]=8,
|
|
["name"]="dec_dmg_yellow_add"
|
|
},
|
|
[9]={
|
|
["id"]=9,
|
|
["name"]="dec_dmg_green_add"
|
|
},
|
|
[10]={
|
|
["id"]=10,
|
|
["name"]="dec_dmg_blue_add"
|
|
},
|
|
[11]={
|
|
["id"]=11,
|
|
["name"]="dec_dmg_purple_add"
|
|
},
|
|
[12]={
|
|
["id"]=12,
|
|
["name"]="dec_dmg_all_add"
|
|
},
|
|
[24]={
|
|
["id"]=24,
|
|
["name"]="dmg_addition_all_add"
|
|
},
|
|
[33]={
|
|
["id"]=33,
|
|
["name"]="stun"
|
|
},
|
|
[34]={
|
|
["id"]=34,
|
|
["name"]="shield"
|
|
},
|
|
[36]={
|
|
["id"]=36,
|
|
["name"]="normal_attack_dec"
|
|
},
|
|
[37]={
|
|
["id"]=37,
|
|
["name"]="normal_attack_add"
|
|
},
|
|
[47]={
|
|
["id"]=47,
|
|
["name"]="shield_rebound_200"
|
|
},
|
|
[48]={
|
|
["id"]=48,
|
|
["name"]="burn"
|
|
},
|
|
[49]={
|
|
["id"]=49,
|
|
["name"]="vulnerable"
|
|
},
|
|
[50]={
|
|
["id"]=50,
|
|
["name"]="frozen"
|
|
},
|
|
[51]={
|
|
["id"]=51,
|
|
["name"]="poison"
|
|
},
|
|
[52]={
|
|
["id"]=52,
|
|
["name"]="imprison"
|
|
},
|
|
[53]={
|
|
["id"]=53,
|
|
["name"]="corrupt"
|
|
},
|
|
[54]={
|
|
["id"]=54,
|
|
["name"]="bleed"
|
|
},
|
|
[55]={
|
|
["id"]=55,
|
|
["name"]="weaken"
|
|
},
|
|
[56]={
|
|
["id"]=56,
|
|
["name"]="lethargy"
|
|
},
|
|
[57]={
|
|
["id"]=57,
|
|
["name"]="curse"
|
|
},
|
|
[58]={
|
|
["id"]=58,
|
|
["name"]="lock"
|
|
},
|
|
[59]={
|
|
["id"]=59,
|
|
["name"]="first_hand"
|
|
},
|
|
[61]={
|
|
["id"]=61,
|
|
["name"]="undead"
|
|
},
|
|
[62]={
|
|
["id"]=62,
|
|
["name"]="counterattack"
|
|
},
|
|
[63]={
|
|
["id"]=63,
|
|
["name"]="thorns"
|
|
},
|
|
[73]={
|
|
["id"]=73,
|
|
["name"]="shield_rebound_400"
|
|
},
|
|
[74]={
|
|
["id"]=74,
|
|
["name"]="shield_ice"
|
|
},
|
|
[75]={
|
|
["id"]=75,
|
|
["name"]="shield_ice_rebound_400"
|
|
}
|
|
}
|
|
local keys = {
|
|
name = {
|
|
["dec_dmg_red_add"]=buff[7],
|
|
["dec_dmg_yellow_add"]=buff[8],
|
|
["dec_dmg_green_add"]=buff[9],
|
|
["dec_dmg_blue_add"]=buff[10],
|
|
["dec_dmg_purple_add"]=buff[11],
|
|
["dec_dmg_all_add"]=buff[12],
|
|
["dmg_addition_all_add"]=buff[24],
|
|
["stun"]=buff[33],
|
|
["shield"]=buff[34],
|
|
["normal_attack_dec"]=buff[36],
|
|
["normal_attack_add"]=buff[37],
|
|
["shield_rebound_200"]=buff[47],
|
|
["burn"]=buff[48],
|
|
["vulnerable"]=buff[49],
|
|
["frozen"]=buff[50],
|
|
["poison"]=buff[51],
|
|
["imprison"]=buff[52],
|
|
["corrupt"]=buff[53],
|
|
["bleed"]=buff[54],
|
|
["weaken"]=buff[55],
|
|
["lethargy"]=buff[56],
|
|
["curse"]=buff[57],
|
|
["lock"]=buff[58],
|
|
["first_hand"]=buff[59],
|
|
["undead"]=buff[61],
|
|
["counterattack"]=buff[62],
|
|
["thorns"]=buff[63],
|
|
["shield_rebound_400"]=buff[73],
|
|
["shield_ice"]=buff[74],
|
|
["shield_ice_rebound_400"]=buff[75]
|
|
}
|
|
}
|
|
local config = {
|
|
data=buff,
|
|
keys=keys,
|
|
count=30
|
|
}
|
|
return config |