c1_lua/lua/app/config/buff.lua
2025-09-16 16:07:43 +08:00

1102 lines
18 KiB
Lua

local buff = {
[1]={
["id"]=1,
["name"]="hurt",
["buff_type"]=3,
["decr"]=3,
["formula"]=1
},
[2]={
["id"]=2,
["name"]="hurt_red",
["buff_type"]=3,
["position"]=1,
["decr"]=3,
["formula"]=1
},
[3]={
["id"]=3,
["name"]="hurt_yellow",
["buff_type"]=3,
["position"]=2,
["decr"]=3,
["formula"]=1
},
[4]={
["id"]=4,
["name"]="hurt_green",
["buff_type"]=3,
["position"]=3,
["decr"]=3,
["formula"]=1
},
[5]={
["id"]=5,
["name"]="hurt_blue",
["buff_type"]=3,
["position"]=4,
["decr"]=3,
["formula"]=1
},
[6]={
["id"]=6,
["name"]="hurt_purple",
["buff_type"]=3,
["position"]=5,
["decr"]=3,
["formula"]=1
},
[7]={
["id"]=7,
["name"]="dec_dmg_red_add",
["buff_type"]=1,
["stack"]=2,
["position"]=1,
["decr"]=1,
["icon"]="dec_dmg_red_add",
["show_name"]=true,
["ispercent"]=1
},
[8]={
["id"]=8,
["name"]="dec_dmg_yellow_add",
["buff_type"]=1,
["stack"]=2,
["position"]=2,
["decr"]=1,
["icon"]="dec_dmg_yellow_add",
["show_name"]=true,
["ispercent"]=1
},
[9]={
["id"]=9,
["name"]="dec_dmg_green_add",
["buff_type"]=1,
["stack"]=2,
["position"]=3,
["decr"]=1,
["icon"]="dec_dmg_green_add",
["show_name"]=true,
["ispercent"]=1
},
[10]={
["id"]=10,
["name"]="dec_dmg_blue_add",
["buff_type"]=1,
["stack"]=2,
["position"]=4,
["decr"]=1,
["icon"]="dec_dmg_blue_add",
["show_name"]=true,
["ispercent"]=1
},
[11]={
["id"]=11,
["name"]="dec_dmg_purple_add",
["buff_type"]=1,
["stack"]=2,
["position"]=5,
["decr"]=1,
["icon"]="dec_dmg_purple_add",
["show_name"]=true,
["ispercent"]=1
},
[12]={
["id"]=12,
["name"]="dec_dmg_all_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1,
["icon"]="dec_dmg_all_add",
["show_name"]=true,
["ispercent"]=1
},
[13]={
["id"]=13,
["name"]="weakness_red_add",
["buff_type"]=1,
["stack"]=2,
["position"]=1,
["decr"]=2
},
[14]={
["id"]=14,
["name"]="weakness_yellow_add",
["buff_type"]=1,
["stack"]=2,
["position"]=2,
["decr"]=2
},
[15]={
["id"]=15,
["name"]="weakness_green_add",
["buff_type"]=1,
["stack"]=2,
["position"]=3,
["decr"]=2
},
[16]={
["id"]=16,
["name"]="weakness_blue_add",
["buff_type"]=1,
["stack"]=2,
["position"]=4,
["decr"]=2
},
[17]={
["id"]=17,
["name"]="weakness_purple_add",
["buff_type"]=1,
["stack"]=2,
["position"]=5,
["decr"]=2
},
[18]={
["id"]=18,
["name"]="weakness_all_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=2
},
[19]={
["id"]=19,
["name"]="dmg_addition_red_add",
["buff_type"]=1,
["stack"]=2,
["position"]=1,
["decr"]=1
},
[20]={
["id"]=20,
["name"]="dmg_addition_yellow_add",
["buff_type"]=1,
["stack"]=2,
["position"]=2,
["decr"]=1
},
[21]={
["id"]=21,
["name"]="dmg_addition_green_add",
["buff_type"]=1,
["stack"]=2,
["position"]=3,
["decr"]=1
},
[22]={
["id"]=22,
["name"]="dmg_addition_blue_add",
["buff_type"]=1,
["stack"]=2,
["position"]=4,
["decr"]=1
},
[23]={
["id"]=23,
["name"]="dmg_addition_purple_add",
["buff_type"]=1,
["stack"]=2,
["position"]=5,
["decr"]=1
},
[24]={
["id"]=24,
["name"]="dmg_addition_all_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1,
["icon"]="weakness_all_add",
["ispercent"]=1
},
[25]={
["id"]=25,
["name"]="atkp_color_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1,
["limit_parameter"]=10000
},
[26]={
["id"]=26,
["name"]="atkp_red_add",
["buff_type"]=1,
["stack"]=2,
["position"]=1,
["decr"]=1,
["limit_parameter"]=10000
},
[27]={
["id"]=27,
["name"]="atkp_yellow_add",
["buff_type"]=1,
["stack"]=2,
["position"]=2,
["decr"]=1,
["limit_parameter"]=10000
},
[28]={
["id"]=28,
["name"]="atkp_green_add",
["buff_type"]=1,
["stack"]=2,
["position"]=3,
["decr"]=1,
["limit_parameter"]=10000
},
[29]={
["id"]=29,
["name"]="atkp_blue_add",
["buff_type"]=1,
["stack"]=2,
["position"]=4,
["decr"]=1,
["limit_parameter"]=10000
},
[30]={
["id"]=30,
["name"]="atkp_purple_add",
["buff_type"]=1,
["stack"]=2,
["position"]=5,
["decr"]=1,
["limit_parameter"]=10000
},
[31]={
["id"]=31,
["name"]="wavehealp",
["buff_type"]=5,
["stack"]=2,
["decr"]=1,
["formula"]=2
},
[32]={
["id"]=32,
["name"]="heal",
["buff_type"]=5,
["stack"]=2,
["decr"]=1,
["formula"]=3,
["fx_get"]={
47
}
},
[33]={
["id"]=33,
["name"]="stun",
["buff_type"]=8,
["decr"]=2,
["icon"]="stun",
["show_name"]=true,
["control_priority"]=2,
["fx_continued"]={
13
}
},
[34]={
["id"]=34,
["name"]="shield",
["buff_type"]=2,
["decr"]=3,
["icon"]="shield",
["fx_continued"]={
20
},
["fx_disappear"]={
21
}
},
[35]={
["id"]=35,
["name"]="atkp_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1
},
[36]={
["id"]=36,
["name"]="normal_attack_dec",
["buff_type"]=1,
["decr"]=2,
["icon"]="normal_attack_dec",
["show_name"]=true,
["fx_get"]={
32
}
},
[37]={
["id"]=37,
["name"]="normal_attack_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1,
["icon"]="high",
["show_name"]=true,
["fx_get"]={
30
}
},
[38]={
["id"]=38,
["name"]="block",
["buff_type"]=1,
["stack"]=2,
["decr"]=1
},
[39]={
["id"]=39,
["name"]="hpp_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1
},
[40]={
["id"]=40,
["name"]="crit_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1
},
[41]={
["id"]=41,
["name"]="crit_time_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1
},
[42]={
["id"]=42,
["name"]="exp_time_add",
["buff_type"]=7,
["stack"]=2,
["decr"]=1
},
[43]={
["id"]=43,
["name"]="cured_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1
},
[44]={
["id"]=44,
["name"]="cured_dec",
["buff_type"]=1,
["stack"]=2,
["decr"]=2
},
[45]={
["id"]=45,
["name"]="add_skill",
["buff_type"]=7,
["stack"]=2,
["decr"]=3
},
[46]={
["id"]=46,
["name"]="skill_fire_times",
["buff_type"]=7,
["stack"]=2,
["decr"]=3
},
[47]={
["id"]=47,
["name"]="shield_rebound_200",
["buff_type"]=2,
["decr"]=3,
["icon"]="shield",
["fx_continued"]={
22
},
["fx_disappear"]={
23
}
},
[48]={
["id"]=48,
["name"]="burn",
["buff_type"]=4,
["stack"]=1,
["decr"]=2,
["formula"]=4,
["icon"]="burn",
["show_name"]=true,
["ispercent"]=1,
["fx_take"]={
36
}
},
[49]={
["id"]=49,
["name"]="vulnerable",
["buff_type"]=1,
["decr"]=2,
["icon"]="vulnerable",
["show_name"]=true,
["ispercent"]=1,
["fx_get"]={
34
}
},
[50]={
["id"]=50,
["name"]="frozen",
["buff_type"]=7,
["decr"]=2,
["icon"]="frozen",
["show_name"]=true,
["control_priority"]=1,
["fx_continued"]={
16
},
["fx_disappear"]={
17
}
},
[51]={
["id"]=51,
["name"]="poison",
["buff_type"]=4,
["stack"]=2,
["decr"]=2,
["formula"]=4,
["icon"]="poison",
["show_name"]=true,
["ispercent"]=1,
["fx_take"]={
35
}
},
[52]={
["id"]=52,
["name"]="imprison",
["buff_type"]=7,
["decr"]=2,
["icon"]="imprison",
["show_name"]=true,
["control_priority"]=4,
["fx_get"]={
29
}
},
[53]={
["id"]=53,
["name"]="corrupt",
["buff_type"]=1,
["decr"]=2,
["icon"]="corrupt",
["show_name"]=true,
["ispercent"]=1,
["fx_get"]={
19
}
},
[54]={
["id"]=54,
["name"]="bleed",
["buff_type"]=7,
["decr"]=2,
["formula"]=4,
["icon"]="bleed",
["show_name"]=true,
["ispercent"]=1,
["fx_take"]={
31
}
},
[55]={
["id"]=55,
["name"]="weaken",
["buff_type"]=1,
["decr"]=2,
["icon"]="weaken",
["show_name"]=true,
["ispercent"]=1,
["fx_continued"]={
33
}
},
[56]={
["id"]=56,
["name"]="lethargy",
["buff_type"]=8,
["stack"]=1,
["decr"]=2,
["icon"]="lethargy",
["show_name"]=true,
["control_priority"]=3,
["fx_continued"]={
28
}
},
[57]={
["id"]=57,
["name"]="curse",
["buff_type"]=1,
["decr"]=2,
["icon"]="curse",
["show_name"]=true,
["fx_get"]={
37
}
},
[58]={
["id"]=58,
["name"]="lock",
["buff_type"]=7,
["decr"]=2,
["icon"]="lock",
["show_name"]=true
},
[59]={
["id"]=59,
["name"]="first_hand",
["buff_type"]=1,
["decr"]=1,
["icon"]="first_hand"
},
[60]={
["id"]=60,
["name"]="skill_hurt_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1,
["limit_parameter"]=10000
},
[61]={
["id"]=61,
["name"]="undead",
["buff_type"]=7,
["decr"]=1,
["icon"]="undead",
["show_name"]=true,
["fx_continued"]={
15
}
},
[62]={
["id"]=62,
["name"]="counterattack",
["buff_type"]=1,
["stack"]=1,
["decr"]=1,
["icon"]="counterattack",
["show_name"]=true,
["ispercent"]=1
},
[63]={
["id"]=63,
["name"]="thorns",
["buff_type"]=1,
["decr"]=1,
["icon"]="thorns",
["show_name"]=true,
["ispercent"]=1,
["fx_continued"]={
18
}
},
[64]={
["id"]=64,
["name"]="dmg_dec_red_add",
["buff_type"]=1,
["stack"]=2,
["position"]=1,
["decr"]=2
},
[65]={
["id"]=65,
["name"]="dmg_dec_yellow_add",
["buff_type"]=1,
["stack"]=2,
["position"]=2,
["decr"]=2
},
[66]={
["id"]=66,
["name"]="dmg_dec_green_add",
["buff_type"]=1,
["stack"]=2,
["position"]=3,
["decr"]=2
},
[67]={
["id"]=67,
["name"]="dmg_dec_blue_add",
["buff_type"]=1,
["stack"]=2,
["position"]=4,
["decr"]=2
},
[68]={
["id"]=68,
["name"]="dmg_dec_purple_add",
["buff_type"]=1,
["stack"]=2,
["position"]=5,
["decr"]=2
},
[69]={
["id"]=69,
["name"]="dmg_dec_all_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=2
},
[70]={
["id"]=70,
["name"]="be_sucked",
["buff_type"]=1,
["decr"]=2
},
[71]={
["id"]=71,
["name"]="be_dmg_to_heal",
["buff_type"]=1,
["decr"]=2
},
[72]={
["id"]=72,
["name"]="death_summon",
["buff_type"]=1,
["decr"]=3,
["icon"]="death_summon"
},
[73]={
["id"]=73,
["name"]="shield_rebound_400",
["buff_type"]=2,
["decr"]=3,
["icon"]="shield",
["fx_continued"]={
22
},
["fx_disappear"]={
23
}
},
[74]={
["id"]=74,
["name"]="shield_ice",
["buff_type"]=2,
["decr"]=3,
["icon"]="shield_ice",
["fx_continued"]={
24
},
["fx_disappear"]={
25
}
},
[75]={
["id"]=75,
["name"]="shield_ice_rebound_400",
["buff_type"]=2,
["decr"]=3,
["icon"]="shield_ice",
["fx_continued"]={
26
},
["fx_disappear"]={
27
}
},
[76]={
["id"]=76,
["name"]="invalid_control",
["buff_type"]=7,
["decr"]=3
},
[77]={
["id"]=77,
["name"]="end_dmg_addition_all_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1
},
[78]={
["id"]=78,
["name"]="end_dmg_dec_all_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=2
},
[79]={
["id"]=79,
["name"]="invincible_shield",
["buff_type"]=7,
["stack"]=3,
["decr"]=3,
["icon"]="invincible_shield",
["fx_continued"]={
38
},
["fx_disappear"]={
39
}
},
[80]={
["id"]=80,
["name"]="shield_ice_02",
["buff_type"]=2,
["decr"]=3,
["icon"]="shield_ice",
["fx_continued"]={
40
},
["fx_disappear"]={
41
}
},
[81]={
["id"]=81,
["name"]="skill_hurt_add_show",
["buff_type"]=1,
["stack"]=2,
["decr"]=1,
["icon"]="skill_hurt_add"
},
[82]={
["id"]=82,
["name"]="shield_ice_rebound_200",
["buff_type"]=2,
["decr"]=3,
["icon"]="shield_ice",
["fx_continued"]={
26
},
["fx_disappear"]={
27
}
},
[83]={
["id"]=83,
["name"]="shield_rebound_100",
["buff_type"]=2,
["decr"]=3,
["icon"]="shield",
["fx_continued"]={
22
},
["fx_disappear"]={
23
}
},
[84]={
["id"]=84,
["name"]="rebirth",
["buff_type"]=7,
["decr"]=1,
["formula"]=3,
["icon"]="rebirth",
["fx_disappear"]={
44
}
},
[85]={
["id"]=85,
["name"]="ocean_shield",
["buff_type"]=2,
["decr"]=1,
["icon"]="ocean_shield1",
["fx_continued"]={
42
},
["fx_disappear"]={
43
}
},
[86]={
["id"]=86,
["name"]="self_heal",
["buff_type"]=6,
["stack"]=2,
["decr"]=1,
["formula"]=3,
["icon"]="self_heal",
["show_name"]=true,
["fx_take"]={
300027
}
},
[87]={
["id"]=87,
["name"]="charm",
["buff_type"]=7,
["decr"]=2,
["icon"]="charm",
["show_name"]=true,
["fx_continued"]={
45
}
},
[88]={
["id"]=88,
["name"]="immune",
["buff_type"]=7,
["decr"]=1,
["icon"]="immune",
["show_name"]=true,
["fx_continued"]={
46
}
},
[89]={
["id"]=89,
["name"]="forever_first_hand",
["buff_type"]=1,
["decr"]=3,
["icon"]="first_hand"
},
[90]={
["id"]=90,
["name"]="forever_counterattack",
["buff_type"]=1,
["stack"]=1,
["decr"]=3,
["icon"]="counterattack",
["ispercent"]=1
},
[91]={
["id"]=91,
["name"]="forever_dec_dmg_red_add",
["buff_type"]=1,
["stack"]=2,
["position"]=1,
["decr"]=3,
["icon"]="dec_dmg_red_add",
["ispercent"]=1
},
[92]={
["id"]=92,
["name"]="forever_dec_dmg_yellow_add",
["buff_type"]=1,
["stack"]=2,
["position"]=2,
["decr"]=3,
["icon"]="dec_dmg_yellow_add",
["ispercent"]=1
},
[93]={
["id"]=93,
["name"]="forever_dec_dmg_green_add",
["buff_type"]=1,
["stack"]=2,
["position"]=3,
["decr"]=3,
["icon"]="dec_dmg_green_add",
["ispercent"]=1
},
[94]={
["id"]=94,
["name"]="forever_dec_dmg_blue_add",
["buff_type"]=1,
["stack"]=2,
["position"]=4,
["decr"]=3,
["icon"]="dec_dmg_blue_add",
["ispercent"]=1
},
[95]={
["id"]=95,
["name"]="forever_dec_dmg_purple_add",
["buff_type"]=1,
["stack"]=2,
["position"]=5,
["decr"]=3,
["icon"]="dec_dmg_purple_add",
["ispercent"]=1
},
[96]={
["id"]=96,
["name"]="forever_dec_dmg_all_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=3,
["icon"]="dec_dmg_all_add",
["ispercent"]=1
},
[97]={
["id"]=97,
["name"]="forever_thorns",
["buff_type"]=1,
["decr"]=3,
["icon"]="thorns",
["show_name"]=true,
["ispercent"]=1,
["fx_continued"]={
18
}
},
[98]={
["id"]=98,
["name"]="hpp_red_add",
["buff_type"]=1,
["stack"]=2,
["position"]=1,
["decr"]=1
},
[99]={
["id"]=99,
["name"]="hpp_yellow_add",
["buff_type"]=1,
["stack"]=2,
["position"]=2,
["decr"]=1
},
[100]={
["id"]=100,
["name"]="hpp_green_add",
["buff_type"]=1,
["stack"]=2,
["position"]=3,
["decr"]=1
},
[101]={
["id"]=101,
["name"]="hpp_blue_add",
["buff_type"]=1,
["stack"]=2,
["position"]=4,
["decr"]=1
},
[102]={
["id"]=102,
["name"]="hpp_purple_add",
["buff_type"]=1,
["stack"]=2,
["position"]=5,
["decr"]=1
},
[103]={
["id"]=103,
["name"]="forever_normal_attack_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1,
["icon"]="high",
["show_name"]=true,
["fx_get"]={
30
}
},
[104]={
["id"]=104,
["name"]="forever_uncontrolled",
["buff_type"]=7,
["decr"]=1,
["icon"]="immune"
}
}
local keys = {
name = {
["hurt"]=buff[1],
["hurt_red"]=buff[2],
["hurt_yellow"]=buff[3],
["hurt_green"]=buff[4],
["hurt_blue"]=buff[5],
["hurt_purple"]=buff[6],
["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],
["weakness_red_add"]=buff[13],
["weakness_yellow_add"]=buff[14],
["weakness_green_add"]=buff[15],
["weakness_blue_add"]=buff[16],
["weakness_purple_add"]=buff[17],
["weakness_all_add"]=buff[18],
["dmg_addition_red_add"]=buff[19],
["dmg_addition_yellow_add"]=buff[20],
["dmg_addition_green_add"]=buff[21],
["dmg_addition_blue_add"]=buff[22],
["dmg_addition_purple_add"]=buff[23],
["dmg_addition_all_add"]=buff[24],
["atkp_color_add"]=buff[25],
["atkp_red_add"]=buff[26],
["atkp_yellow_add"]=buff[27],
["atkp_green_add"]=buff[28],
["atkp_blue_add"]=buff[29],
["atkp_purple_add"]=buff[30],
["wavehealp"]=buff[31],
["heal"]=buff[32],
["stun"]=buff[33],
["shield"]=buff[34],
["atkp_add"]=buff[35],
["normal_attack_dec"]=buff[36],
["normal_attack_add"]=buff[37],
["block"]=buff[38],
["hpp_add"]=buff[39],
["crit_add"]=buff[40],
["crit_time_add"]=buff[41],
["exp_time_add"]=buff[42],
["cured_add"]=buff[43],
["cured_dec"]=buff[44],
["add_skill"]=buff[45],
["skill_fire_times"]=buff[46],
["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],
["skill_hurt_add"]=buff[60],
["undead"]=buff[61],
["counterattack"]=buff[62],
["thorns"]=buff[63],
["dmg_dec_red_add"]=buff[64],
["dmg_dec_yellow_add"]=buff[65],
["dmg_dec_green_add"]=buff[66],
["dmg_dec_blue_add"]=buff[67],
["dmg_dec_purple_add"]=buff[68],
["dmg_dec_all_add"]=buff[69],
["be_sucked"]=buff[70],
["be_dmg_to_heal"]=buff[71],
["death_summon"]=buff[72],
["shield_rebound_400"]=buff[73],
["shield_ice"]=buff[74],
["shield_ice_rebound_400"]=buff[75],
["invalid_control"]=buff[76],
["end_dmg_addition_all_add"]=buff[77],
["end_dmg_dec_all_add"]=buff[78],
["invincible_shield"]=buff[79],
["shield_ice_02"]=buff[80],
["skill_hurt_add_show"]=buff[81],
["shield_ice_rebound_200"]=buff[82],
["shield_rebound_100"]=buff[83],
["rebirth"]=buff[84],
["ocean_shield"]=buff[85],
["self_heal"]=buff[86],
["charm"]=buff[87],
["immune"]=buff[88],
["forever_first_hand"]=buff[89],
["forever_counterattack"]=buff[90],
["forever_dec_dmg_red_add"]=buff[91],
["forever_dec_dmg_yellow_add"]=buff[92],
["forever_dec_dmg_green_add"]=buff[93],
["forever_dec_dmg_blue_add"]=buff[94],
["forever_dec_dmg_purple_add"]=buff[95],
["forever_dec_dmg_all_add"]=buff[96],
["forever_thorns"]=buff[97],
["hpp_red_add"]=buff[98],
["hpp_yellow_add"]=buff[99],
["hpp_green_add"]=buff[100],
["hpp_blue_add"]=buff[101],
["hpp_purple_add"]=buff[102],
["forever_normal_attack_add"]=buff[103],
["forever_uncontrolled"]=buff[104]
}
}
local config = {
data=buff,
keys=keys,
count=104
}
return config