--============================================================ -- @Author: Mark(车英达) -- @E-mail: 120006937@qq.com -- @Date: 2019-11-06 20:43:52 -- @Last Modified time: 2019-11-29 17:25:54 --============================================================ --type 1:分裂 2:闪电 3:暴击 4:加速 local config = { buffMap = { --分裂 [1] = { effectList = { -- prop:概率 base:基数 num:子弹数量 limit:最大触发次数 {type = 1, prob = 8,base = 100, num = 3, limit=2}, }, compose = {1}, desc = "Berpisah probabilitas+8%" --desc = "分裂概率+8%" }, --闪电 [2] = { effectList = { -- prop:概率 base:基数 num:子弹数量 limit:最大触发次数 {type = 2, prob = 8,base = 100, num = 3, limit=2}, }, compose = {2}, desc = "Probabilitas koneksi petir+8%" --desc = "连电概率+8%" }, --暴击 [3] = { effectList = { --multiple:暴击倍数列表 {type = 3, prob = 20,base = 100, multiple = {2}}, }, compose = {3}, --desc说明文字 desc = "Probabilitas critical hits+20%" --desc = "暴击概率+20%" }, --加速 [4] = { effectList = { --ratio : 加速百分比 {type = 4, ratio = 20}, }, compose = {4}, desc = "Peningkatan kecepatan+20%" --desc = "速度提升+20%" }, --散散 [5] = { effectList = { {type = 1, prob = 20,base = 100, num = 3, limit=2}, }, compose = {1,1}, desc = "Berpisah probabilitas+20%" --desc = "分裂概率+20%" }, --散暴 [6] = { effectList = { {type = 1, prob = 8,base = 100, num = 3, limit=2}, {type = 3, prob = 20,base = 100, multiple = {2}}, }, compose = {1,3}, --desc = {"分裂概率+8%","暴击概率+20%"} desc = {"Berpisah probabilitas+8%","Probabilitas critical hits+20%"} }, --散电 [7] = { effectList = { {type = 1, prob = 8,base = 100, num = 3, limit=2}, {type = 2, prob = 8,base = 100, num = 3, limit=2}, }, compose = {1,2}, desc = {"Berpisah probabilitas+8%","Probabilitas koneksi petir+8%"} --desc = {"分裂概率+8%","连电概率+8%"} }, --散速 [8] = { effectList = { {type = 1, prob = 8,base = 100, num = 3, limit=2}, {type = 4, ratio = 20}, }, compose = {1,4}, desc = {"Berpisah probabilitas+8%","Peningkatan kecepatan+20%"} --desc = {"分裂概率+8%","速度提升+20%"} }, --暴暴 [9] = { effectList = { {type = 3, prob = 40,base = 100, multiple = {2,3}}, }, compose = {3,3}, desc = "Probabilitas critical hits+40%" --desc = "暴击概率+40%" }, --暴电 [10] = { effectList = { {type = 3, prob = 20,base = 100, multiple = {2}}, {type = 2, prob = 8,base = 100, num = 3, limit=2}, }, compose = {3,2}, desc = {"Probabilitas critical hits+20%","Probabilitas koneksi petir+8%"} --desc = {"暴击概率+20%","连电概率+8%"} }, --暴速 [11] = { effectList = { {type = 3, prob = 20,base = 100, multiple = {2}}, {type = 4, ratio = 20}, }, compose = {3,4}, desc = {"Probabilitas critical hits+20%","Peningkatan kecepatan+20%"} --desc = {"暴击概率+20%","速度提升+20%"} }, --电电 [12] = { effectList = { {type = 2, prob = 20,base = 100, num = 3, limit=2}, }, compose = {2,2}, desc = "Probabilitas koneksi petir+20%" --desc = "连电概率+20%" }, --电速 [13] = { effectList = { {type = 2, prob = 8,base = 100, num = 3, limit=2}, {type = 4, ratio = 20}, }, compose = {2,4}, desc = {"Probabilitas koneksi petir+8%","Peningkatan kecepatan+20%"} --desc = {"连电概率+8%","速度提升+20%"} }, --速速 [14] = { effectList = { {type = 4, ratio = 80}, }, compose = {4,4}, desc = "Peningkatan kecepatan+80%" --desc = "速度提升+80%" }, --速速速 [15] = { effectList = { {type = 4, ratio = 300}, }, compose = {4,4,4}, desc = "Peningkatan kecepatan+300%" --desc = "速度提升+300%" }, --散速2 [16] = { effectList = { {type = 1, prob = 8,base = 100, num = 3, limit=2}, {type = 4, ratio = 80}, }, compose = {1,4,4}, desc = {"Berpisah probabilitas+8%","Peningkatan kecepatan+80%"} --desc = {"分裂概率+8%","速度提升+80%"} }, --散2速 [17] = { effectList = { {type = 1, prob = 20,base = 100, num = 3, limit=2}, {type = 4, ratio = 20}, }, compose = {1,4,1}, desc = {"Berpisah probabilitas+20%","Peningkatan kecepatan+20%"} --desc = {"分裂概率+20%","速度提升+20%"} }, --散3 [18] = { effectList = { {type = 1, prob = 50,base = 100, num = 3, limit=2}, }, compose = {1,1,1}, desc = {"Berpisah probabilitas+50%"} --desc = {"分裂概率+50%"} }, --散2电 [19] = { effectList = { {type = 1, prob = 20,base = 100, num = 3, limit=2}, {type = 2, prob = 8,base = 100, num = 3, limit=2}, }, compose = {1,2,1}, desc = {"Berpisah probabilitas+20%","Probabilitas koneksi petir+8%"} --desc = {"分裂概率+20%","连电概率+8%"} }, --散2暴 [20] = { effectList = { {type = 1, prob = 20,base = 100, num = 3, limit=2}, {type = 3, prob = 20,base = 100, multiple = {2}}, }, compose = {1,3,1}, desc = {"Berpisah probabilitas+20%","Probabilitas critical hits+20%"} --desc = {"分裂概率+20%","暴击概率+20%"} }, --散电速 [21] = { effectList = { {type = 1, prob = 8,base = 100, num = 3, limit=2}, {type = 2, prob = 8,base = 100, num = 3, limit=2}, {type = 4, ratio = 20}, }, compose = {1,2,4}, desc = {"Berpisah probabilitas+8%","Probabilitas koneksi petir+8%","Peningkatan kecepatan+20%"} --desc = {"分裂概率+8%","连电概率+8%","速度提升+20%"} }, --散电2 [22] = { effectList = { {type = 1, prob = 8,base = 100, num = 3, limit=2}, {type = 2, prob = 20,base = 100, num = 3, limit=2}, }, compose = {1,2,2}, desc = {"Berpisah probabilitas+8%","Probabilitas koneksi petir+20%"} --desc = {"分裂概率+8%","连电概率+20%"} }, --散电暴 [23] = { effectList = { {type = 1, prob = 8,base = 100, num = 3, limit=2}, {type = 2, prob = 8,base = 100, num = 3, limit=2}, {type = 3, prob = 20,base = 100, multiple = {2}}, }, compose = {1,2,3}, desc = {"Berpisah probabilitas+8%","Probabilitas koneksi petir+8%","Probabilitas critical hits+20%"} --desc = {"分裂概率+8%","连电概率+8%","暴击概率+20%"} }, --散暴速 [24] = { effectList = { {type = 1, prob = 8,base = 100, num = 3, limit=2}, {type = 3, prob = 20,base = 100, multiple = {2}}, {type = 4, ratio = 20}, }, compose = {1,3,4}, desc = {"Berpisah probabilitas+8%","Probabilitas critical hits+20%","Peningkatan kecepatan+20%"} --desc = {"分裂概率+8%","暴击概率+20%","速度提升+20%"} }, --散暴2 [25] = { effectList = { {type = 1, prob = 8,base = 100, num = 3, limit=2}, {type = 3, prob = 40,base = 100, multiple = {2,3}}, }, compose = {1,3,3}, desc = {"Berpisah probabilitas+8%","Probabilitas critical hits+40%"} --desc = {"分裂概率+8%","暴击概率+40%"} }, --电速2 [26] = { effectList = { {type = 2, prob = 8,base = 100, num = 3, limit=2}, {type = 4, ratio = 80}, }, compose = {2,4,4}, desc = {"Probabilitas koneksi petir+8%","Peningkatan kecepatan+80%"} --desc = {"连电概率+8%","速度提升+80%"} }, --电2速 [27] = { effectList = { {type = 2, prob = 20,base = 100, num = 3, limit=2}, {type = 4, ratio = 20}, }, compose = {2,4,2}, desc = {"Probabilitas koneksi petir+20%","Peningkatan kecepatan+20%"} --desc = {"连电概率+20%","速度提升+20%"} }, --电3 [28] = { effectList = { {type = 2, prob = 50,base = 100, num = 3, limit=2}, }, compose = {2,2,2}, desc = {"Probabilitas koneksi petir+50%"} --desc = {"连电概率+50%"} }, --电2暴 [29] = { effectList = { {type = 2, prob = 20,base = 100, num = 3, limit=2}, {type = 3, prob = 20,base = 100, multiple = {2}}, }, compose = {2,3,2}, desc = {"Probabilitas koneksi petir+20%","Probabilitas critical hits+20%"} --desc = {"连电概率+20%","暴击概率+20%"} }, --电暴速 [30] = { effectList = { {type = 2, prob = 8,base = 100, num = 3, limit=2}, {type = 3, prob = 20,base = 100, multiple = {2}}, {type = 4, ratio = 20}, }, compose = {2,3,4}, desc = {"Probabilitas koneksi petir+8%","Probabilitas critical hits+20%","Peningkatan kecepatan+20%"} --desc = {"连电概率+8%","暴击概率+20%","速度提升+20%"} }, --电暴2 [31] = { effectList = { {type = 2, prob = 8,base = 100, num = 3, limit=2}, {type = 3, prob = 40,base = 100, multiple = {2,3}}, }, compose = {2,3,3}, desc = {"Probabilitas koneksi petir+8%","Peningkatan kecepatan+40%"} --desc = {"连电概率+8%","暴击概率+40%"} }, --暴速2 [32] = { effectList = { {type = 3, prob = 20,base = 100, multiple = {2}}, {type = 4, ratio = 80}, }, compose = {3,4,4}, desc = {"Probabilitas critical hits+20%","Peningkatan kecepatan+80%"} --desc = {"暴击概率+20%","速度提升+80%"} }, --暴2速 [33] = { effectList = { {type = 3, prob = 40,base = 100, multiple = {2,3}}, {type = 4, ratio = 20}, }, compose = {3,4,3}, desc = {"Probabilitas critical hits+40","Peningkatan kecepatan+20%"} --desc = {"暴击提升+40","速度提升+20%"} }, --暴3 [34] = { effectList = { {type = 3, prob = 80,base = 100, multiple = {3,5}}, }, compose = {3,3,3}, desc = {"Probabilitas critical hits+80%"} --desc = {"暴击概率+80%"} }, } } function f_get_buff_config( ) return config end