BeSkill.lua 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223
  1. local Util = require("common.Util")
  2. local CombatBuff = require("combat.CombatBuff")
  3. local CombatDefine = require("combat.CombatDefine")
  4. local CombatImpl = require("combat.CombatImpl")
  5. local Skill = require("combat.Skill")
  6. local CombatObj = require("combat.CombatObj")
  7. local RoleAttr = require("role.RoleAttr")
  8. local RoleDefine = require("role.RoleDefine")
  9. local HeroExcel = require("excel.hero").hero
  10. local SkillExcel = require("excel.skill").skill
  11. -- local BufferExcel = require("excel.buffer").buffer
  12. local FuwenExcel = require("excel.fuwen")
  13. local SkinSkillExcel = require("excel.skin").skill
  14. local BingshuLogic = require("fuwen.BingshuLogic")
  15. local ProjectLogic = require("platform.ProjectLogic")
  16. local HeroDefine = require("hero.HeroDefine")
  17. local WinnerRelicLogic = require("winnerRelic.WinnerRelicLogic")
  18. local TargetMode = require("combat.TargetMode")
  19. local tbFuwenSkillGroupID = {}
  20. local posSortBySpeed = posSortBySpeed or {}
  21. function initBeSkill(obj)
  22. obj.beSkillList = {}
  23. obj.beSkillListTemp = {}
  24. end
  25. function setBeSkillID(obj, skillID, isFuWenSkill, isRelicSkill)
  26. local skillConfig = Skill.GetFinalSkillConfig(obj, skillID)
  27. skillID = skillConfig.id
  28. if obj.beSkillListTemp[skillID] then return end
  29. --local skillConfig = SkillExcel[skillID]
  30. if skillConfig.need > obj.quality then return end
  31. if skillConfig.beSkillType == 0 then return end
  32. if skillConfig.beSkillType == BESKILL_TYPE24 then
  33. obj.beSkillListTemp[BESKILL_TYPE24] = obj.beSkillListTemp[BESKILL_TYPE24] or {}
  34. obj.beSkillListTemp[BESKILL_TYPE24][#obj.beSkillListTemp[BESKILL_TYPE24] + 1] = {
  35. skillID,
  36. skillConfig.beSkillLimit > 0 and skillConfig.beSkillLimit,skillConfig.cd[1] or 0,
  37. skillConfig.cd[2] or 0,
  38. isFuWenSkill or 0, isRelicSkill or 0}
  39. for _,skillID in ipairs(skillConfig.args) do
  40. --local skillConfig = SkillExcel[skillID]
  41. local skillConfig = Skill.GetFinalSkillConfig(obj, skillID)
  42. if not obj.beSkillListTemp[skillID] and skillConfig.need <= obj.quality then
  43. obj.beSkillList[skillConfig.beSkillType] = obj.beSkillList[skillConfig.beSkillType] or {}
  44. obj.beSkillList[skillConfig.beSkillType][#obj.beSkillList[skillConfig.beSkillType] + 1] = {
  45. skillID,
  46. skillConfig.beSkillLimit > 0 and skillConfig.beSkillLimit,skillConfig.cd[1] or 0,
  47. skillConfig.cd[2] or 0,
  48. isFuWenSkill or 0, isRelicSkill or 0}
  49. obj.beSkillListTemp[skillID] = 1
  50. end
  51. end
  52. else
  53. obj.beSkillList[skillConfig.beSkillType] = obj.beSkillList[skillConfig.beSkillType] or {}
  54. obj.beSkillList[skillConfig.beSkillType][#obj.beSkillList[skillConfig.beSkillType] + 1] = {
  55. skillID,
  56. skillConfig.beSkillLimit > 0 and skillConfig.beSkillLimit,skillConfig.cd[1] or 0,
  57. skillConfig.cd[2] or 0,
  58. isFuWenSkill or 0, isRelicSkill or 0}
  59. obj.beSkillListTemp[skillID] = 1
  60. end
  61. end
  62. function setBeSkill(obj, config, skinConf, monsterOutConfig)
  63. local temp = {}
  64. local confBeskillID = skinConf and skinConf.beSkillList or config.beSkillList
  65. for _,skillID in ipairs(confBeskillID) do
  66. setBeSkillID(obj,skillID)
  67. end
  68. -- 加载 赋能技能 这个策划说放到最后
  69. if config.bePvPSkillList and CombatImpl.isPVP == 1 then
  70. for _,skillID in ipairs(config.bePvPSkillList) do
  71. setBeSkillID(obj, skillID)
  72. end
  73. end
  74. -- 怪物组附加的被动技能
  75. if monsterOutConfig then
  76. for _, skillID in ipairs(monsterOutConfig) do
  77. setBeSkillID(obj,skillID)
  78. end
  79. end
  80. -- 符文被动技能
  81. -- 符文技能效果这里 如果有多个同类型的技能 效果不叠加 只取最高等级的那个技能的效果
  82. if obj.fuwen or obj.bingshu then
  83. local hasFuwenBeSkill = nil
  84. Util.initTable(tbFuwenSkillGroupID)
  85. if obj.fuwen then
  86. for i = 1, 2 do
  87. local fuwenGrid = obj.fuwen[i]
  88. if fuwenGrid and fuwenGrid.skill then
  89. for j = 1, #fuwenGrid.skill do
  90. local fuwenSkillID = fuwenGrid.skill[j]
  91. local fuwenSkillConfig = FuwenExcel.skill[fuwenSkillID]
  92. local fuwenGroupID = fuwenSkillConfig.groupID
  93. if fuwenSkillConfig.fuwenBeSkill ~= 0 then
  94. hasFuwenBeSkill = true
  95. if tbFuwenSkillGroupID[fuwenGroupID] then
  96. if tbFuwenSkillGroupID[fuwenGroupID] < fuwenSkillID then
  97. tbFuwenSkillGroupID[fuwenGroupID] = fuwenSkillID
  98. end
  99. else
  100. tbFuwenSkillGroupID[fuwenGroupID] = fuwenSkillID
  101. end
  102. end
  103. end
  104. end
  105. end
  106. end
  107. if obj.bingshu then
  108. for i = 1, BingshuLogic.BINGSHU_MAXCNT do
  109. local bingshuGrid = obj.bingshu[i]
  110. if bingshuGrid then
  111. local skillID = bingshuGrid.skillID
  112. local skillConfig = FuwenExcel.skill[skillID]
  113. local groupID = skillConfig.groupID
  114. hasFuwenBeSkill = true
  115. if (tbFuwenSkillGroupID[groupID] or 0) < skillID then
  116. tbFuwenSkillGroupID[groupID] = skillID
  117. end
  118. end
  119. end
  120. end
  121. if hasFuwenBeSkill == true then
  122. for groupID, skillIDTemp in pairs(tbFuwenSkillGroupID) do
  123. local fuwenSkillConfig = FuwenExcel.skill[skillIDTemp]
  124. local fuwenBeSkillID = fuwenSkillConfig.fuwenBeSkill
  125. setBeSkillID(obj,fuwenBeSkillID, 1)
  126. end
  127. end
  128. end
  129. --遗物被动技能
  130. if obj.relic and nil ~= _G.next(obj.relic) then
  131. local nRelicID = obj.relic.relicID
  132. local star = obj.relic.star
  133. -- print("当前获取到的星级",star)
  134. local nSkillID = WinnerRelicLogic.WinnerRelic_GetSkillID(nRelicID, star)
  135. print("[setBeSkill] nSkillID = "..nSkillID)
  136. if 0 < nSkillID then
  137. setBeSkillID(obj, nSkillID, 0, 1)
  138. local tSkilConfig = SkillExcel and SkillExcel[nSkillID]
  139. -- print("当前获取到的skillid2222222222",tSkilConfig.id)
  140. if tSkilConfig and tSkilConfig.otherArgs and tSkilConfig.otherArgs.skillList then
  141. for k,v in ipairs(tSkilConfig.otherArgs.skillList) do
  142. local config = SkillExcel[v]
  143. if config and config.id then
  144. -- print("當前设置的skillid",config.id)
  145. setBeSkillID(obj, config.id, 0, 1)
  146. end
  147. end
  148. end
  149. end
  150. end
  151. end
  152. function setPetBeSkill(obj)
  153. --if obj
  154. --local skillConfig = SkillExcel[1999]
  155. local skillConfig = Skill.GetSkillConfig(1999)
  156. if skillConfig then
  157. obj.beSkillList = obj.beSkillList or {}
  158. obj.beSkillList[skillConfig.beSkillType] = obj.beSkillList[skillConfig.beSkillType] or {}
  159. obj.beSkillList[skillConfig.beSkillType][#obj.beSkillList[skillConfig.beSkillType] + 1] = {1999,skillConfig.beSkillLimit > 0 and skillConfig.beSkillLimit,skillConfig.cd[1] or 0,skillConfig.cd[2] or 0}
  160. end
  161. end
  162. --被动技能类型
  163. BESKILL_TYPE1 = 1 --普攻附带
  164. BESKILL_TYPE2 = 2 --被击触发
  165. BESKILL_TYPE3 = 3 --自身生命低于参数
  166. BESKILL_TYPE4 = 4 --自己暴击触发
  167. BESKILL_TYPE5 = 5 --受到技能伤害
  168. BESKILL_TYPE6 = 6 --自己攻击被格挡
  169. BESKILL_TYPE7 = 7 --受到暴击触发
  170. BESKILL_TYPE8 = 8 --自己格挡触发(其他单位对自己发动攻击,自己触发格挡)
  171. BESKILL_TYPE9 = 9 --敌方英雄触发格挡
  172. BESKILL_TYPE10 = 10 --自己受持续状态伤害
  173. BESKILL_TYPE11 = 11 --自己受控制类状态
  174. BESKILL_TYPE12 = 12 --场上有英雄被添加燃烧状态
  175. BESKILL_TYPE13 = 13 -- 我方英雄施放主动技能
  176. BESKILL_TYPE14 = 14 -- 我方英雄暴击
  177. BESKILL_TYPE15 = 15 -- 自己死亡
  178. BESKILL_TYPE16 = 16 --我方英雄死亡
  179. BESKILL_TYPE17 = 17 --敌方英雄死亡
  180. BESKILL_TYPE18 = 18 --有英雄死亡
  181. BESKILL_TYPE19 = 19 --回合开始
  182. BESKILL_TYPE20 = 20 --回合结束
  183. BESKILL_TYPE23 = 23 --激活就生效(计入面板属性)
  184. BESKILL_TYPE24 = 24 --技能包
  185. BESKILL_TYPE25 = 25 --替换初始普攻
  186. BESKILL_TYPE26 = 26 --激活就生效(进入战斗前算。不计入面板属性)
  187. BESKILL_TYPE27 = 27 --魔兽回能量被动
  188. BESKILL_TYPE28 = 28 --自身触发格挡次数
  189. BESKILL_TYPE29 = 29 --有人受到缠绕时
  190. BESKILL_TYPE30 = 30 --使生命低于x时
  191. BESKILL_TYPE31 = 31 --任意英雄释放主动技能
  192. BESKILL_TYPE32 = 32 --战斗开始时触发
  193. BESKILL_TYPE33 = 33 --复活时触发
  194. BESKILL_TYPE34 = 34 --使用主动技能时
  195. BESKILL_TYPE35 = 35 --自身击杀敌人时
  196. BESKILL_TYPE36 = 36 --攻击回合结束时触发
  197. BESKILL_TYPE37 = 37 --物攻后触发
  198. BESKILL_TYPE38 = 38 --法攻后触发
  199. BESKILL_TYPE39 = 39 --攻击附带 (普攻 主动 都算)
  200. BESKILL_TYPE40 = 40 --攻击前根据条件判断是否触发(小战斗回合,针对每个对象单独判断)
  201. BESKILL_TYPE41 = 41 --实际扣血前触发
  202. BESKILL_TYPE42 = 42 --由其他英雄的buff触发
  203. BESKILL_TYPE43 = 43 --被某个技能打死
  204. BESKILL_TYPE44 = 44 --自己暴击+反击触发
  205. BESKILL_TYPE45 = 45 --计算伤害时触发
  206. BESKILL_TYPE46 = 46 --攻击附带 (普攻 主动 连击 反击都算)
  207. BESKILL_TYPE47 = 47 --每回合叠加属性
  208. BESKILL_TYPE48 = 48 --死亡英雄伤害率
  209. BESKILL_TYPE49 = 49 --加血变成减血
  210. BESKILL_TYPE50 = 50 --每回合触发 降低对方首次攻击目标伤害率
  211. BESKILL_TYPE51 = 51 --场上有英雄被添加诅咒状态
  212. BESKILL_TYPE52 = 52 --场上有英雄被攻击
  213. BESKILL_TYPE53 = 53 --场上有英雄有特定被动技能 友军普攻触发
  214. BESKILL_TYPE54 = 54 --场上有英雄特定buff 伤害加成
  215. BESKILL_TYPE55 = 55 --场上有英雄指定buff层数 额外伤害加成
  216. BESKILL_TYPE56 = 56 --场上有英雄特定bufer且概率产生
  217. BESKILL_TYPE57 = 57 --特定buff被引爆消除时 触发的效果
  218. BESKILL_TYPE58 = 58 --指定技能暴击
  219. BESKILL_TYPE59 = 59 --没有暴击触发一个效果
  220. BESKILL_TYPE60 = 60 --暴击加成
  221. BESKILL_TYPE61 = 61 --技能未击杀目标时触发
  222. BESKILL_TYPE62 = 62 --回合开始生命值触发
  223. BESKILL_TYPE63 = 63 --回合开始生命值触发
  224. BESKILL_TYPE64 = 64 --冰冻buffer被击碎
  225. BESKILL_TYPE65 = 65 --场上有英雄有特定被动技能 友军普攻暴击触发
  226. BESKILL_TYPE66 = 66 --敌方死亡特定buff触发
  227. BESKILL_TYPE67 = 67 --血量低于多少跟受控制触发
  228. BESKILL_TYPE68 = 68 --血族英雄特殊处理
  229. BESKILL_TYPE69 = 69 --血族英雄特殊处理
  230. BESKILL_TYPE70 = 70 --增加的属性激活就生效(计入面板属性)并且概率连击
  231. NO_CHECK_FANJI_LIST = {
  232. [BESKILL_TYPE3] = 1,
  233. [BESKILL_TYPE15] = 1,
  234. [BESKILL_TYPE16] = 1,
  235. [BESKILL_TYPE17] = 1,
  236. [BESKILL_TYPE18] = 1,
  237. [BESKILL_TYPE35] = 1,
  238. [BESKILL_TYPE36] = 1,
  239. [BESKILL_TYPE37] = 1,
  240. [BESKILL_TYPE38] = 1,
  241. [BESKILL_TYPE44] = 1,
  242. [BESKILL_TYPE46] = 1,
  243. }
  244. NO_CHECK_COMBO_LIST = {
  245. [BESKILL_TYPE1] = 1,
  246. [BESKILL_TYPE3] = 1,
  247. [BESKILL_TYPE14] = 1,
  248. [BESKILL_TYPE16] = 1,
  249. [BESKILL_TYPE17] = 1,
  250. [BESKILL_TYPE18] = 1,
  251. [BESKILL_TYPE35] = 1,
  252. [BESKILL_TYPE34] = 1,
  253. [BESKILL_TYPE25] = 1,
  254. [BESKILL_TYPE46] = 1,
  255. [BESKILL_TYPE37] = 1,
  256. [BESKILL_TYPE38] = 1,
  257. }
  258. local function checkLimit(data)
  259. if data[2] and data[2] <= 0 then
  260. return
  261. end
  262. if data[4] > 0 and data[3] > CombatImpl.round then
  263. return
  264. end
  265. return true
  266. end
  267. local function canUse(obj,data)
  268. if obj.isPet then
  269. return true
  270. end
  271. --被动技能次数限制判断
  272. if not checkLimit(data) then
  273. return
  274. end
  275. --local skillConfig = SkillExcel[data[1]]
  276. local skillConfig = Skill.GetSkillConfig(data[1])
  277. if not NO_CHECK_FANJI_LIST[skillConfig.beSkillType] and CombatImpl.isFanji then
  278. return
  279. end
  280. if not NO_CHECK_COMBO_LIST[skillConfig.beSkillType] and CombatImpl.comboType > 0 then
  281. return
  282. end
  283. local bNotFeng = nil
  284. -- boss 被动不能被封印
  285. -- 世界boss模式下 boss不受feng状态影响
  286. if CombatImpl.fightMode[1] == CombatDefine.FIGHT_MODE3 then
  287. if obj.type == CombatDefine.COMBAT_OBJ_TYPE3 then
  288. bNotFeng = true
  289. end
  290. end
  291. if not bNotFeng and CombatBuff.isStatus(obj,{"banBeSkill","feng"}) then
  292. return
  293. end
  294. data[3] = data[3] + data[4]
  295. local beSkillArgs = skillConfig.beSkillArgs
  296. local ret = true
  297. --被动技能触发条件判断
  298. if beSkillArgs[1] then
  299. if beSkillArgs[1] == "hp" then
  300. local hp = obj.hp
  301. local hpMax = CombatObj.getHpMax(obj)
  302. if hp > hpMax * beSkillArgs[2]/10000 then
  303. ret = false
  304. end
  305. elseif beSkillArgs[1] == "hpOrControl" then
  306. ret = false
  307. local hp = obj.hp
  308. local hpMax = CombatObj.getHpMax(obj)
  309. if hp <= hpMax * beSkillArgs[2]/10000 then
  310. ret = true
  311. end
  312. if CombatBuff.isAtControl(obj) then
  313. ret = true
  314. end
  315. elseif beSkillArgs[1] == "fanji" then
  316. local r = math.random(0,10000)
  317. if r > beSkillArgs[2] then
  318. return
  319. end
  320. elseif beSkillArgs[1] == "pos" then
  321. local pos = obj.pos
  322. ret = false
  323. if beSkillArgs[2] then
  324. for i = 1,#beSkillArgs[2] do
  325. if pos == beSkillArgs[2][i] then
  326. ret = true
  327. break
  328. end
  329. end
  330. end
  331. elseif beSkillArgs[1] == "noBuffCmd" then
  332. return not CombatBuff.isStatus(obj,beSkillArgs[2])
  333. elseif beSkillArgs[1] == "attackerBuffCmd" then
  334. local isStatus,cmd = CombatBuff.isStatus(obj,beSkillArgs[2])
  335. return isStatus
  336. elseif beSkillArgs[1] == "myjob" then
  337. ret = false
  338. for k,v in ipairs(beSkillArgs[2]) do
  339. if v == obj.job then
  340. ret = true
  341. break
  342. end
  343. end
  344. elseif beSkillArgs[1] == "sideLimit" then
  345. for k,v in ipairs(beSkillArgs[2]) do
  346. local useCnt = CombatImpl.getBeSkillSideUse(obj.pos,v[1])
  347. if useCnt >= v[2] then
  348. return
  349. end
  350. end
  351. elseif beSkillArgs[1] == "firstAttackOrder" then
  352. local side = obj.side
  353. if side then
  354. local isFirstAttack = CombatImpl.firstAttack[side]
  355. if beSkillArgs[2] == 1 then
  356. return isFirstAttack
  357. else
  358. return not isFirstAttack
  359. end
  360. end
  361. end
  362. end
  363. if ret and data[2] then
  364. data[2] = data[2] - 1
  365. end
  366. if skillConfig.cmd == "hp" then
  367. local hp = obj.hp
  368. local targetMode = skillConfig.args[3]
  369. --英雄血量为0时不能加血
  370. if (hp <= 0 or CombatBuff.isStatus(obj,{"revive"})) and targetMode and targetMode[1] == 10 then
  371. ret = false
  372. end
  373. end
  374. return ret
  375. end
  376. --被攻击触发,需要判断攻击者状态的被动技能
  377. local function canUseOnHit(obj,data)
  378. if not obj then
  379. return true
  380. end
  381. --local skillConfig = SkillExcel[data[1]]
  382. local skillConfig = Skill.GetSkillConfig(data[1])
  383. local beSkillArgs = skillConfig.beSkillArgs
  384. local condCmd = beSkillArgs[1]
  385. if condCmd == "job" then
  386. for _,job in ipairs(beSkillArgs[2]) do
  387. if obj.job == job then
  388. return true
  389. end
  390. end
  391. return false
  392. elseif condCmd == "buffCmd" then
  393. return CombatBuff.isStatus(obj,beSkillArgs[2])
  394. elseif condCmd == "targetHp" then
  395. local hp = obj.hp
  396. local checkHp = CombatObj.getHpMax(obj) * beSkillArgs[3] / 10000
  397. if beSkillArgs[2] == 1 and hp > checkHp then
  398. return true
  399. elseif beSkillArgs[2] == 2 and hp < checkHp then
  400. return true
  401. end
  402. else
  403. return true
  404. end
  405. end
  406. local function isCanRevive(obj, attacker , data)
  407. -- local skillConfig = SkillExcel[data[1]]
  408. local skillConfig = Skill.GetSkillConfig(data[1])
  409. if skillConfig.cmd == "shengling" or
  410. skillConfig.cmd == "revive" then
  411. if skillConfig.cmd == "shengling" and CombatImpl.checkSideResult(obj.pos) == true then -- 如果是队伍最后一个死亡的不释放 圣灵复活
  412. return false
  413. end
  414. if CombatBuff.canRevive(obj) ~= true then
  415. return false
  416. end
  417. if skillConfig.cmd == "shengling" then
  418. if CombatBuff.isStatus(obj,{"revive"}) then
  419. return false
  420. end
  421. end
  422. if attacker and attacker.beSkillList then
  423. for k,skillList in pairs(attacker.beSkillList) do
  424. for j,v in pairs(skillList) do
  425. --local config = SkillExcel[v[1]]
  426. local config = Skill.GetSkillConfig(data[1])
  427. if config and skillConfig.cmd == "shengling" and config.cmd == "noShengling" then --击杀方有 不准圣灵复活被动
  428. return false
  429. elseif config and config.cmd == "noRevive" then -- 击杀方 有不准复活的
  430. if #config.args > 0 then
  431. local canNum = config.args[1]
  432. local random = math.random(1, 10000)
  433. if random > canNum then -- noRevive 概率不生效
  434. return true
  435. else
  436. return false
  437. end
  438. end
  439. return true
  440. end
  441. end
  442. end
  443. end
  444. end
  445. return true
  446. end
  447. function onSkillID(obj,skillID)
  448. --local skillConfig = SkillExcel[skillID]
  449. local skillConfig = Skill.GetSkillConfig(skillID)
  450. if skillConfig.type == CombatDefine.SKILL_TYPE1 and obj.beSkillList[BESKILL_TYPE25] then
  451. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE25]) do
  452. if canUse(obj,v) then
  453. --local conf = SkillExcel[v[1]]
  454. local conf = Skill.GetSkillConfig(v[1])
  455. return conf.args[1]
  456. end
  457. end
  458. end
  459. return skillID
  460. end
  461. local function use(attacker,targets,data,newFrame, packBuff)
  462. if canUse(attacker,data) and canUseOnHit(targets and targets[1],data) then
  463. --print("beskill realuse:",attacker.pos,data[1])
  464. --local skillConfig = SkillExcel[data[1]]
  465. local skillConfig = Skill.GetSkillConfig(data[1])
  466. local ret
  467. -- 二次元连击触发帧不新加帧
  468. if ProjectLogic.isSsecy() and skillConfig.cmd == "combo" then
  469. newFrame = false
  470. end
  471. if packBuff then
  472. CombatImpl.afterBuff()
  473. end
  474. if Skill.CMD[skillConfig.cmd] then
  475. if newFrame or CombatImpl.isSkillFrameEmpty() then
  476. --进入战斗时,未加入任何战斗帧触发被动技能时,先添加被动技能的战斗帧,可以在这个战斗帧上挂被动技能引发的额外作用
  477. CombatImpl.addFrame()
  478. CombatImpl.setSkillID(attacker, data[1])
  479. end
  480. ret = Skill.CMD[skillConfig.cmd](attacker,skillConfig,targets)
  481. end
  482. --判断是否加喊话
  483. local isAddSkillFrame = CombatBuff.onUseBeSkill(attacker,skillConfig,targets,ret)
  484. if skillConfig.contentType > 0 then
  485. if isAddSkillFrame then
  486. CombatImpl.addSaySkill(attacker,skillConfig)
  487. elseif ret or skillConfig.beSkillType == BESKILL_TYPE26 or
  488. skillConfig.beSkillType == BESKILL_TYPE23 or
  489. skillConfig.beSkillType == BESKILL_TYPE4 or
  490. skillConfig.beSkillType == BESKILL_TYPE44 then
  491. if CombatImpl.isSkillFrameEmpty() then
  492. CombatImpl.addFrame()
  493. CombatImpl.setSkillID(attacker, data[1])
  494. end
  495. CombatImpl.setSaySkill(attacker.pos,skillConfig.id,skillConfig.contentType)
  496. end
  497. end
  498. CombatImpl.addBeSkillPosUse(attacker.pos,data[1])
  499. else
  500. -- print("[beskill - use] 直接返回了1 id = "..data[1])
  501. end
  502. end
  503. function onHit(attacker,targets,skillID)
  504. if attacker.isPet then
  505. return
  506. end
  507. --local useSkillConfig = SkillExcel[skillID]
  508. local useSkillConfig = Skill.GetSkillConfig(skillID)
  509. if useSkillConfig.type == CombatDefine.SKILL_TYPE2 then
  510. --[[for _,pos in ipairs(CombatDefine.SIDE2POS[side]) do
  511. local obj = CombatImpl.objList[pos]
  512. if obj and obj.hp > 0 and obj.beSkillList[BESKILL_TYPE13] then
  513. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE13]) do
  514. use(obj,targets,v)
  515. end
  516. end
  517. end]]
  518. if attacker.beSkillList[BESKILL_TYPE34] then
  519. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE34]) do
  520. --local skillConfig = SkillExcel[v[1]]
  521. local skillConfig = Skill.GetSkillConfig(v[1])
  522. local beSkillArgs = skillConfig.beSkillArgs
  523. if beSkillArgs[1] == "attackerBuffCmd" and beSkillArgs[2][1] == "shayi" then
  524. local shayiCnt = CombatBuff.getBuffCnt(attacker,"shayi")
  525. if shayiCnt > 0 then
  526. for i = 1,shayiCnt do
  527. use(attacker,targets,v,true)
  528. CombatImpl.instantFrameBuffer(attacker,v[1])
  529. end
  530. end
  531. CombatBuff.delShayi(attacker)
  532. elseif beSkillArgs[1] == "qusanNeedCmd" then
  533. local canUse = false
  534. for h,need in ipairs(beSkillArgs[2]) do
  535. if need == useSkillConfig.cmd then
  536. canUse = true
  537. break
  538. end
  539. end
  540. if canUse == true then
  541. use(attacker,targets,v,true)
  542. end
  543. elseif beSkillArgs[1] == "jiekongNeedCmd" then
  544. local canUse = false
  545. for h,need in ipairs(beSkillArgs[2]) do
  546. if need == useSkillConfig.cmd then
  547. canUse = true
  548. break
  549. end
  550. end
  551. if canUse == true then
  552. use(attacker,targets,v,true)
  553. end
  554. elseif beSkillArgs[1] == "skillID" then
  555. local canUse = false
  556. for _, targetSkill in ipairs(beSkillArgs[2]) do
  557. if skillID == targetSkill then
  558. canUse = true
  559. break
  560. end
  561. end
  562. if canUse == true then
  563. use(attacker,targets,v,true)
  564. end
  565. else
  566. use(attacker,targets,v)
  567. end
  568. end
  569. end
  570. end
  571. --非攻击性主动技能不处理被击被动技能
  572. if CombatObj.getValue(attacker,RoleDefine.HURT_COMBAT_NOW) <= 0 then
  573. if (useSkillConfig.type == CombatDefine.SKILL_TYPE1 or useSkillConfig.type == CombatDefine.SKILL_TYPE2) then
  574. if attacker.beSkillList[BESKILL_TYPE39] then
  575. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE39]) do
  576. use(attacker,targets,v)
  577. end
  578. end
  579. if attacker.beSkillList[BESKILL_TYPE70] then
  580. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE70]) do
  581. use(attacker,targets,v)
  582. end
  583. end
  584. end
  585. return
  586. end
  587. if useSkillConfig.type == CombatDefine.SKILL_TYPE1 and attacker.beSkillList[BESKILL_TYPE1] then
  588. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE1]) do
  589. use(attacker,targets,v)
  590. end
  591. end
  592. if useSkillConfig.type == CombatDefine.SKILL_TYPE2 and attacker.beSkillList[BESKILL_TYPE61] then
  593. local canUseSkill = true
  594. for index = 1, #targets do
  595. local target = targets[index]
  596. if target.hp <=0 then
  597. canUseSkill = false
  598. end
  599. end
  600. if canUseSkill then
  601. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE61]) do
  602. --local skillConfig = SkillExcel[v[1]]
  603. local skillConfig = Skill.GetSkillConfig(v[1])
  604. local beSkillArgs = skillConfig.beSkillArgs
  605. if beSkillArgs[1] == "skillID" then
  606. local canUse = false
  607. for _,v in ipairs(beSkillArgs[2]) do
  608. if skillID == v then
  609. canUse = true
  610. break
  611. end
  612. end
  613. if canUse then
  614. use(attacker,{},v)
  615. end
  616. end
  617. end
  618. end
  619. end
  620. if (useSkillConfig.type == CombatDefine.SKILL_TYPE1 or useSkillConfig.type == CombatDefine.SKILL_TYPE2 or useSkillConfig.type == CombatDefine.SKILL_TYPE3) then
  621. if attacker.beSkillList[BESKILL_TYPE39] then
  622. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE39]) do
  623. use(attacker,targets,v)
  624. end
  625. end
  626. if attacker.beSkillList[BESKILL_TYPE46] then
  627. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE46]) do
  628. use(attacker,targets,v)
  629. end
  630. end
  631. if attacker.beSkillList[BESKILL_TYPE70] then
  632. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE70]) do
  633. use(attacker,targets,v)
  634. end
  635. end
  636. end
  637. local isDefendSideGedang = false
  638. local baojiDefender = {}
  639. for _,target in ipairs(targets) do
  640. if target.beSkillList[BESKILL_TYPE2] then
  641. for _,v in ipairs(target.beSkillList[BESKILL_TYPE2]) do
  642. use(target,{attacker},v)
  643. -- print("當前受到攻擊,觸發被動技能11111111111111ssssssssss1111111111111111",skillID)
  644. --table.print_lua_table(v)
  645. end
  646. end
  647. -- 友军受击
  648. for _,pos in ipairs(CombatDefine.SIDE2POS[target.side]) do
  649. local obj = CombatImpl.objList[pos]
  650. if obj and obj.pos ~= target.pos and obj.beSkillList[BESKILL_TYPE52] then
  651. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE52]) do
  652. use(target,{attacker},v)
  653. end
  654. end
  655. end
  656. if useSkillConfig.type == CombatDefine.SKILL_TYPE2 and target.beSkillList[BESKILL_TYPE5] then
  657. for _,v in ipairs(target.beSkillList[BESKILL_TYPE5]) do
  658. use(target,{attacker},v)
  659. end
  660. end
  661. if target.isGedang then
  662. isDefendSideGedang = true
  663. if target.beSkillList[BESKILL_TYPE8] then
  664. for _,v in ipairs(target.beSkillList[BESKILL_TYPE8]) do
  665. use(target,{attacker},v)
  666. end
  667. end
  668. if attacker.beSkillList[BESKILL_TYPE6] then
  669. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE6]) do
  670. use(attacker,{target},v)
  671. end
  672. end
  673. --目标触发格挡次数
  674. if target.beSkillList[BESKILL_TYPE28] then
  675. for _, v in ipairs(target.beSkillList[BESKILL_TYPE28]) do
  676. --local skillConfig = SkillExcel[v[1]]
  677. local skillConfig = Skill.GetSkillConfig(v[1])
  678. local beSkillArgs = skillConfig.beSkillArgs
  679. if beSkillArgs[1] == "gedang" then
  680. target.isGedangCnt = target.isGedangCnt or 0
  681. local geDangLimit = beSkillArgs[2]
  682. if target.isGedangCnt >= geDangLimit then
  683. target.isGedangCnt = 0
  684. use(target,{attacker},v)
  685. end
  686. end
  687. end
  688. end
  689. end
  690. local chanRao = CombatBuff.isChanRao(target)
  691. if chanRao then
  692. if target.beSkillList[BESKILL_TYPE29] then
  693. for _,v in ipairs(target.beSkillList[BESKILL_TYPE29]) do
  694. use(target,{attacker},v)
  695. end
  696. end
  697. end
  698. if target.isBaoji then
  699. if target.beSkillList[BESKILL_TYPE7] then
  700. for _,v in ipairs(target.beSkillList[BESKILL_TYPE7]) do
  701. use(target,{attacker},v)
  702. end
  703. end
  704. baojiDefender[#baojiDefender+1] = target
  705. end
  706. -- if target.buffCmd["winner_nuhuo"] then
  707. -- local nIndex = target.buffCmd["winner_nuhuo"][1]
  708. -- local tBuffData = target.buffer[nIndex]
  709. -- if tBuffData.cnt < 10 then
  710. -- tBuffData.cnt = tBuffData.cnt + 1
  711. -- end
  712. -- end
  713. end
  714. local side = attacker.side
  715. local defendSide = side == CombatDefine.ATTACK_SIDE and CombatDefine.DEFEND_SIDE or CombatDefine.ATTACK_SIDE
  716. --普通技能触发
  717. if useSkillConfig.type == CombatDefine.SKILL_TYPE1 then
  718. for _,pos in ipairs(CombatDefine.SIDE2POS[side]) do
  719. local obj = CombatImpl.objList[pos]
  720. if obj and obj.hp > 0 and obj.beSkillList[BESKILL_TYPE53] then
  721. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE53]) do
  722. use(attacker,targets,v)
  723. end
  724. end
  725. end
  726. end
  727. --主动技能触发
  728. if useSkillConfig.type == CombatDefine.SKILL_TYPE2 then
  729. for _,pos in ipairs(CombatDefine.SIDE2POS[0]) do
  730. local obj = CombatImpl.objList[pos]
  731. local objSide = pos <= 6 and CombatDefine.ATTACK_SIDE or CombatDefine.DEFEND_SIDE
  732. --触发自己这方的
  733. if side == objSide then
  734. if obj and obj.hp > 0 and obj.beSkillList[BESKILL_TYPE13] then
  735. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE13]) do
  736. use(obj,targets,v)
  737. end
  738. end
  739. end
  740. --触发任意一方
  741. if obj and obj.hp > 0 and obj.beSkillList[BESKILL_TYPE31] then
  742. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE31]) do
  743. use(obj,targets,v)
  744. end
  745. end
  746. end
  747. end
  748. if not attacker.isBaoji then
  749. --指定技能没有暴击
  750. if attacker.beSkillList[BESKILL_TYPE59] then
  751. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE59]) do
  752. --local skillConfig = SkillExcel[v[1]]
  753. local skillConfig = Skill.GetSkillConfig(v[1])
  754. local beSkillArgs = skillConfig.beSkillArgs
  755. if beSkillArgs[1] == "skillID" then
  756. local canUse = false
  757. for _,v in ipairs(beSkillArgs[2]) do
  758. if skillID == v then
  759. canUse = true
  760. break
  761. end
  762. end
  763. if canUse then
  764. use(attacker,{},v)
  765. end
  766. end
  767. end
  768. end
  769. end
  770. if attacker.isBaoji then
  771. --普通暴击技能触发
  772. if useSkillConfig.type == CombatDefine.SKILL_TYPE1 then
  773. for _,pos in ipairs(CombatDefine.SIDE2POS[side]) do
  774. local obj = CombatImpl.objList[pos]
  775. if obj and obj.hp > 0 and obj.beSkillList[BESKILL_TYPE65] then
  776. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE65]) do
  777. use(attacker,targets,v)
  778. end
  779. end
  780. end
  781. end
  782. if attacker.beSkillList[BESKILL_TYPE4] then
  783. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE4]) do
  784. use(attacker,baojiDefender,v)
  785. end
  786. end
  787. if attacker.beSkillList[BESKILL_TYPE44] and CombatImpl.isFanji then
  788. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE44]) do
  789. use(attacker,baojiDefender,v)
  790. end
  791. end
  792. --指定技能暴击
  793. if attacker.beSkillList[BESKILL_TYPE58] then
  794. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE58]) do
  795. --local skillConfig = SkillExcel[v[1]]
  796. local skillConfig = Skill.GetSkillConfig(v[1])
  797. local beSkillArgs = skillConfig.beSkillArgs
  798. if beSkillArgs[1] == "skillID" then
  799. local canUse = false
  800. for _,v in ipairs(beSkillArgs[2]) do
  801. if skillID == v then
  802. canUse = true
  803. break
  804. end
  805. end
  806. if canUse then
  807. use(attacker,baojiDefender,v)
  808. end
  809. end
  810. end
  811. end
  812. for _,pos in ipairs(CombatDefine.SIDE2POS[side]) do
  813. local obj = CombatImpl.objList[pos]
  814. if obj and obj.hp > 0 and obj.beSkillList[BESKILL_TYPE14] then
  815. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE14]) do
  816. use(obj,targets,v)
  817. end
  818. end
  819. end
  820. end
  821. if isDefendSideGedang then
  822. for _,pos in ipairs(CombatDefine.SIDE2POS[side]) do
  823. local obj = CombatImpl.objList[pos]
  824. if obj and obj.hp > 0 and obj.beSkillList[BESKILL_TYPE9] then
  825. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE9]) do
  826. use(obj,targets,v)
  827. end
  828. end
  829. end
  830. end
  831. end
  832. function onHp(obj, hurt, attackPos)
  833. if obj.beSkillList[BESKILL_TYPE3] then
  834. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE3]) do
  835. use(obj,{},v)
  836. end
  837. end
  838. if obj.beSkillList[BESKILL_TYPE67] then
  839. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE67]) do
  840. use(obj,{},v)
  841. end
  842. end
  843. local attacker = CombatImpl.objList[attackPos]
  844. if attacker and attacker.beSkillList[BESKILL_TYPE30] and obj.pos ~= attackPos then
  845. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE30]) do
  846. --local skillConfig = SkillExcel[v[1]]
  847. local skillConfig = Skill.GetSkillConfig(v[1])
  848. local beSkillArgs = skillConfig.beSkillArgs
  849. obj.paramData.isbeSkillByHp = obj.paramData.isbeSkillByHp or 0
  850. if beSkillArgs[1] then
  851. if beSkillArgs[1] == "tohp" then
  852. local hp = obj.hp
  853. local hpMax = CombatObj.getHpMax(obj)
  854. if hp > hpMax * beSkillArgs[2]/10000 then
  855. obj.paramData.isbeSkillByHp = 0 --恢复到上限
  856. else
  857. if obj.isbeSkillByHp == 0 then
  858. obj.paramData.isbeSkillByHp = 1 --达到下限
  859. end
  860. end
  861. elseif beSkillArgs[1] == "hurthpper" then
  862. local hpMax = CombatObj.getHpMax(obj)
  863. local percent = -hurt/hpMax
  864. if percent > beSkillArgs[2]/10000 then -- 伤害超过目标生命值上限X%时
  865. use(attacker,{obj},v)
  866. end
  867. elseif beSkillArgs[1] == "speed" then
  868. local atkSpeed = CombatImpl.getValue(attacker,RoleDefine.SPEED)
  869. local defSpeed = CombatImpl.getValue(obj,RoleDefine.SPEED)
  870. if atkSpeed > defSpeed then
  871. use(attacker,{obj},v)
  872. end
  873. end
  874. end
  875. --使用技能
  876. if obj.paramData.isbeSkillByHp == 1 then
  877. use(attacker,{obj},v)
  878. obj.paramData.isbeSkillByHp = 2
  879. end
  880. end
  881. end
  882. end
  883. -- 选择合适的复活技能
  884. function selectReviceSkill(obj, attacker)
  885. local reviveSkillList = {}
  886. local len = 0
  887. for k, v in ipairs(obj.beSkillList[BESKILL_TYPE15]) do
  888. local skillID = v[1]
  889. local isFuwenSkill = v[5]
  890. --local skillConfig = SkillExcel[skillID]
  891. local skillConfig = Skill.GetSkillConfig(skillID)
  892. if skillConfig.cmd == "revive" then
  893. --有可使用的主动复活技能
  894. local state = isCanRevive(obj, attacker, v)
  895. if state and isFuwenSkill == 0 then
  896. if checkLimit(v) then
  897. len = len + 1
  898. reviveSkillList[k] = 1
  899. break
  900. end
  901. end
  902. end
  903. end
  904. -- 没有再取符文技能的复活
  905. if len == 0 then
  906. for k, v in ipairs(obj.beSkillList[BESKILL_TYPE15]) do
  907. local skillID = v[1]
  908. local isFuwenSkill = v[5]
  909. --local skillConfig = SkillExcel[skillID]
  910. local skillConfig = Skill.GetSkillConfig(skillID)
  911. if skillConfig.cmd == "revive" then
  912. local state = isCanRevive(obj, attacker, v)
  913. if state and isFuwenSkill == 1 then
  914. --被动技能次数限制判断
  915. if checkLimit(v) then
  916. reviveSkillList[k] = 1
  917. break
  918. end
  919. end
  920. end
  921. end
  922. end
  923. return reviveSkillList
  924. end
  925. function onDie(obj, hurt, attackPos)
  926. if obj.hp > 0 then
  927. return
  928. end
  929. local side = obj.side
  930. local attacker = CombatImpl.objList[attackPos]
  931. if obj.attackSkillID then
  932. if attacker and attacker.beSkillList[BESKILL_TYPE43] then
  933. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE43]) do
  934. --local skillConfig = SkillExcel[v[1]]
  935. local skillConfig = Skill.GetSkillConfig(v[1])
  936. for _,v1 in ipairs(skillConfig.beSkillArgs) do
  937. if v1 == obj.attackSkillID then
  938. use(attacker,{obj},v)
  939. break
  940. end
  941. end
  942. end
  943. end
  944. end
  945. local defendSide = side == CombatDefine.ATTACK_SIDE and CombatDefine.DEFEND_SIDE or CombatDefine.ATTACK_SIDE
  946. for _,posData in ipairs(posSortBySpeed[side]) do
  947. local pos = posData[1]
  948. local target = CombatImpl.objList[pos]
  949. if target and target.hp > 0 then
  950. if target.beSkillList[BESKILL_TYPE16] then
  951. for _,v in ipairs(target.beSkillList[BESKILL_TYPE16]) do
  952. use(target,{obj},v)
  953. end
  954. end
  955. if target.beSkillList[BESKILL_TYPE18] then
  956. for _,v in ipairs(target.beSkillList[BESKILL_TYPE18]) do
  957. use(target,{obj},v)
  958. end
  959. end
  960. end
  961. end
  962. for _,posData in ipairs(posSortBySpeed[defendSide]) do
  963. local pos = posData[1]
  964. local target = CombatImpl.objList[pos]
  965. if target and target.hp > 0 then
  966. if target.beSkillList[BESKILL_TYPE17] then
  967. for _,v in ipairs(target.beSkillList[BESKILL_TYPE17]) do
  968. use(target,{obj},v)
  969. end
  970. end
  971. if target.beSkillList[BESKILL_TYPE18] then
  972. for _,v in ipairs(target.beSkillList[BESKILL_TYPE18]) do
  973. use(target,{obj},v)
  974. end
  975. end
  976. end
  977. end
  978. if attacker and attacker.beSkillList and attacker.beSkillList[BESKILL_TYPE30] and obj.pos ~= attackPos then
  979. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE30]) do
  980. if obj.isbeSkillByHp == nil or
  981. obj.isbeSkillByHp == 0 then
  982. use(attacker,{},v)
  983. end
  984. end
  985. end
  986. if attacker and attacker.beSkillList and attacker.beSkillList[BESKILL_TYPE35] then
  987. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE35]) do
  988. use(attacker,{obj},v)
  989. end
  990. end
  991. if obj.beSkillList[BESKILL_TYPE15] then
  992. -- 选择其中一个使用
  993. local reviceSkillList = selectReviceSkill(obj, attacker)
  994. for k, v in ipairs(obj.beSkillList[BESKILL_TYPE15]) do
  995. local skillID = v[1]
  996. --local skillConfig = SkillExcel[skillID]
  997. local skillConfig = Skill.GetSkillConfig(skillID)
  998. if skillConfig.cmd == "revive" then
  999. if reviceSkillList[k] then
  1000. use(obj,{},v)
  1001. break
  1002. end
  1003. else
  1004. use(obj,{},v)
  1005. end
  1006. end
  1007. end
  1008. for _,pos in ipairs(CombatDefine.SIDE2POS[defendSide]) do
  1009. local defendobj = CombatImpl.objList[pos]
  1010. if defendobj and defendobj.hp > 0 and defendobj.beSkillList[BESKILL_TYPE66] then
  1011. for _,v in ipairs(defendobj.beSkillList[BESKILL_TYPE66]) do
  1012. --local skillConfig = SkillExcel[v[1]]
  1013. local skillConfig = Skill.GetSkillConfig(v[1])
  1014. if skillConfig and skillConfig.otherArgs.tdBuffCmd then
  1015. if obj.bufferCmd[skillConfig.otherArgs.tdBuffCmd] then
  1016. use(defendobj,{},v)
  1017. end
  1018. end
  1019. end
  1020. end
  1021. end
  1022. end
  1023. function onAddBuffer(obj,buffer)
  1024. --local conf = BufferExcel[buffer.id]
  1025. local conf = CombatBuff.GetBuffConfig(buffer.id)
  1026. local attacker = CombatImpl.objList[buffer.attackPos]
  1027. local cmd = conf.cmd
  1028. if cmd == "hurt" or cmd == "liuxue"or cmd == "liuxue2" or cmd == "zhongdu" or cmd == "ranshao" then
  1029. if obj.beSkillList[BESKILL_TYPE10] then
  1030. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE10]) do
  1031. use(obj,{attacker},v)
  1032. end
  1033. end
  1034. end
  1035. if cmd == "bingdong" or cmd == "jiansu" then
  1036. for _,pos in ipairs(CombatDefine.SIDE2POS[attacker.side]) do
  1037. local target = CombatImpl.objList[pos]
  1038. if target and target.hp > 0 and target.beSkillList[BESKILL_TYPE63] then
  1039. for _,v in ipairs(target.beSkillList[BESKILL_TYPE63]) do
  1040. use(target,{obj},v)
  1041. end
  1042. end
  1043. end
  1044. end
  1045. if CombatBuff.isControlCmd(cmd) then
  1046. if obj.beSkillList[BESKILL_TYPE11] then
  1047. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE11]) do
  1048. use(obj,{attacker},v)
  1049. end
  1050. end
  1051. if obj.beSkillList[BESKILL_TYPE67] then
  1052. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE67]) do
  1053. use(obj,{attacker},v, true, true)
  1054. end
  1055. end
  1056. end
  1057. if cmd == "ranshao" then
  1058. for pos = 1,CombatDefine.COMBAT_HERO_ALL_CNT do
  1059. local target = CombatImpl.objList[pos]
  1060. if target and target.hp > 0 and target.beSkillList[BESKILL_TYPE12] then
  1061. for _,v in ipairs(target.beSkillList[BESKILL_TYPE12]) do
  1062. local beSkillUseCnt = CombatImpl.getBeSkillUse(target,obj.pos,v[1])--特殊条件特殊处理:同一英雄在同一时间被施加多次燃烧状态时只触发一次
  1063. if beSkillUseCnt == 0 then
  1064. use(target,{obj},v)
  1065. CombatImpl.addBeSkillUse(target,obj.pos,v[1])
  1066. end
  1067. end
  1068. end
  1069. end
  1070. end
  1071. if cmd == "zuzhou" then
  1072. for _,pos in ipairs(CombatDefine.SIDE2POS[attacker.side]) do
  1073. local target = CombatImpl.objList[pos]
  1074. if target and target.hp > 0 and target.beSkillList[BESKILL_TYPE51] then
  1075. for _,v in ipairs(target.beSkillList[BESKILL_TYPE51]) do
  1076. use(target,{obj},v)
  1077. end
  1078. end
  1079. end
  1080. end
  1081. if cmd == "revive" then
  1082. if obj.beSkillList[BESKILL_TYPE33] then
  1083. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE33]) do
  1084. use(obj,{attacker},v)
  1085. end
  1086. end
  1087. end
  1088. end
  1089. function onDelBingDongBuffer(obj, buffer)
  1090. --local conf = BufferExcel[buffer.id]
  1091. local conf = CombatBuff.GetBuffConfig(buffer.id)
  1092. local attacker = CombatImpl.objList[buffer.attackPos]
  1093. if conf.cmd == "bingdong" then
  1094. for _, pos in ipairs(CombatDefine.SIDE2POS[attacker.side]) do
  1095. local target = CombatImpl.objList[pos]
  1096. if target and target.hp > 0 and target.beSkillList[BESKILL_TYPE64] then
  1097. for _,v in ipairs(target.beSkillList[BESKILL_TYPE64]) do
  1098. use(target,{obj},v)
  1099. end
  1100. end
  1101. end
  1102. end
  1103. end
  1104. --援军上阵触发
  1105. function onBackupBegin(obj)
  1106. if not obj then return end
  1107. if CombatDefine.isBackup(obj) ~= CombatDefine.BACKUP_TYPE2 then return end
  1108. -- 备份的被动技能上阵
  1109. if obj.backUpSkillList then
  1110. obj.beSkillList = obj.backUpSkillList
  1111. obj.backUpSkillList = nil
  1112. end
  1113. -- 出站计算属性
  1114. if obj.beSkillList[BESKILL_TYPE26] then
  1115. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE26]) do
  1116. if canUse(obj,v) then
  1117. --local skillConfig = SkillExcel[v[1]]
  1118. local skillConfig = Skill.GetSkillConfig(v[1])
  1119. if skillConfig.cmd == "attr" then
  1120. for _,v1 in ipairs(skillConfig.args) do
  1121. obj.sysAttr[v1[1]] = obj.sysAttr[v1[1]] +v1[2]
  1122. end
  1123. obj.isSysAttrChange = true
  1124. elseif skillConfig.cmd == "normalTarget" then
  1125. use(obj,{},v)
  1126. end
  1127. end
  1128. end
  1129. end
  1130. table.sort(posSortBySpeed[CombatDefine.ATTACK_SIDE],posSpeedCmp)
  1131. table.sort(posSortBySpeed[CombatDefine.DEFEND_SIDE],posSpeedCmp)
  1132. --援军出战触发
  1133. if obj and obj.beSkillList[BESKILL_TYPE32] then
  1134. for k,v in ipairs(obj.beSkillList[BESKILL_TYPE32]) do
  1135. use(obj,{},v)
  1136. end
  1137. end
  1138. --上场技能
  1139. CombatDefine.BACKUP_BUFF_SKILL[2] = 1
  1140. use(obj,{}, CombatDefine.BACKUP_BUFF_SKILL)
  1141. end
  1142. function onRoundBegin(round)
  1143. for pos = 1,CombatDefine.COMBAT_HERO_ALL_CNT do
  1144. local target = CombatImpl.objList[pos]
  1145. if target and target.hp > 0 and target.beSkillList[BESKILL_TYPE19] then
  1146. for _,v in ipairs(target.beSkillList[BESKILL_TYPE19]) do
  1147. --table.print_lua_table(v)
  1148. -- print("beskill = onRoundBegin 开始使用技能 ID = "..v[1])
  1149. use(target,{},v)
  1150. end
  1151. end
  1152. -- 生命值触发
  1153. if target and target.hp > 0 and target.beSkillList[BESKILL_TYPE62] then
  1154. for _,v in ipairs(target.beSkillList[BESKILL_TYPE62]) do
  1155. --local skillConfig = SkillExcel[v[1]]
  1156. local skillConfig = Skill.GetSkillConfig(v[1])
  1157. local beSkillArgs = skillConfig.beSkillArgs
  1158. if beSkillArgs[1] == 1 then
  1159. local hpMax = CombatObj.getHpMax(target)
  1160. local percent = target.hp/hpMax
  1161. if percent > beSkillArgs[2]/10000 then
  1162. use(target,{},v)
  1163. end
  1164. end
  1165. if beSkillArgs[1] == 2 then
  1166. local hpMax = CombatObj.getHpMax(target)
  1167. local percent = target.hp/hpMax
  1168. if percent < beSkillArgs[2]/10000 then
  1169. use(target,{},v)
  1170. end
  1171. end
  1172. end
  1173. end
  1174. end
  1175. for pos = 1,CombatDefine.COMBAT_HERO_ALL_CNT do
  1176. local target = CombatImpl.objList[pos]
  1177. if target and target.hp > 0 and target.beSkillList[BESKILL_TYPE47] then
  1178. for _,v in ipairs(target.beSkillList[BESKILL_TYPE47]) do
  1179. --local skillConfig = SkillExcel[v[1]]
  1180. local skillConfig = Skill.GetSkillConfig(v[1])
  1181. if skillConfig.cmd == "attr" then
  1182. for _,v1 in ipairs(skillConfig.args) do
  1183. target.sysAttr[v1[1]] = target.sysAttr[v1[1]] +v1[2]
  1184. end
  1185. CombatObj.calcAttr(target)
  1186. CombatImpl.addFrame()
  1187. CombatImpl.setSkillID(target, v[1])
  1188. CombatImpl.setSaySkill(target.pos,skillConfig.id,skillConfig.contentType)
  1189. end
  1190. end
  1191. end
  1192. end
  1193. if round and round == 1 then
  1194. for pos = 1,CombatDefine.COMBAT_HERO_ALL_CNT do
  1195. local obj = CombatImpl.objList[pos]
  1196. if obj and obj.beSkillList[BESKILL_TYPE32] then
  1197. for k,v in ipairs(obj.beSkillList[BESKILL_TYPE32]) do
  1198. use(obj,{},v)
  1199. end
  1200. end
  1201. end
  1202. end
  1203. end
  1204. function beforeFanji(obj)
  1205. if not obj or obj.isPet then
  1206. return
  1207. end
  1208. if obj and obj.hurtType == CombatDefine.PHY_HURT_TYPE then
  1209. if obj and obj.beSkillList and obj.beSkillList[BESKILL_TYPE37] then
  1210. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE37]) do
  1211. use(obj,{},v)
  1212. end
  1213. end
  1214. else
  1215. if obj and obj.beSkillList and obj.beSkillList[BESKILL_TYPE38] then
  1216. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE38]) do
  1217. use(obj,{},v)
  1218. end
  1219. end
  1220. end
  1221. end
  1222. function onRoundEnd(isRoundEnd)
  1223. for pos = 1,CombatDefine.COMBAT_HERO_ALL_CNT do
  1224. local obj = CombatImpl.objList[pos]
  1225. if obj and obj.beSkillList[BESKILL_TYPE36] then
  1226. if pos == 1 then
  1227. end
  1228. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE36]) do
  1229. use(obj,{},v)
  1230. end
  1231. end
  1232. end
  1233. if isRoundEnd then
  1234. for pos = 1,CombatDefine.COMBAT_HERO_ALL_CNT do
  1235. local target = CombatImpl.objList[pos]
  1236. if target and target.hp > 0 and target.beSkillList[BESKILL_TYPE20] then
  1237. for _,v in ipairs(target.beSkillList[BESKILL_TYPE20]) do
  1238. use(target,{},v)
  1239. end
  1240. end
  1241. end
  1242. end
  1243. end
  1244. function posSpeedCmp(a,b)
  1245. if a[2] > b[2] then
  1246. return true
  1247. elseif a[2] < b[2] then
  1248. return false
  1249. else
  1250. return a[1] < b[1]
  1251. end
  1252. end
  1253. -- 计算遗物特殊属性部分
  1254. local function BeSkill_RelicAttribute(ReleaserObj, tSkillInfo)
  1255. local nSkillID = tSkillInfo[1]
  1256. local tSkilConfig = Skill.GetSkillConfig(nSkillID)
  1257. if not tSkilConfig then
  1258. -- print("[BeSkill_RelicAttribute] 不存在技能配置 nSkillID = "..nSkillID)
  1259. return
  1260. end
  1261. local winnerID = ReleaserObj and ReleaserObj.relic and ReleaserObj.relic.relicID or 0
  1262. local winnerStar = ReleaserObj and ReleaserObj.relic and ReleaserObj.relic.star or 0
  1263. if 0 >= winnerID or 0 >= winnerStar then
  1264. return
  1265. end
  1266. -- 特殊处理防御为0, 加标识
  1267. if tSkilConfig.otherArgs.selefDefense then
  1268. ReleaserObj.relicAttr.bSpecialDef = true
  1269. end
  1270. -- 是否增加args属性
  1271. local bAddArgs = true
  1272. table.print_lua_table(tSkilConfig.otherArgs)
  1273. if tSkilConfig.otherArgs.winnerfiveraces then
  1274. bAddArgs = false
  1275. end
  1276. local targets = TargetMode.getTargets(ReleaserObj, tSkilConfig.targetMode)
  1277. if #targets > 0 and true == bAddArgs then
  1278. for _, obj in ipairs(targets) do
  1279. -- 加固定值属性
  1280. for _, v in ipairs(tSkilConfig.args) do
  1281. if not obj.relicAttr.FixedAttr[v[1]] then
  1282. obj.relicAttr.FixedAttr[v[1]] = 0
  1283. end
  1284. obj.relicAttr.FixedAttr[v[1]] = obj.relicAttr.FixedAttr[v[1]] + v[2]
  1285. end
  1286. end
  1287. else
  1288. -- print("[BeSkill_RelicAttribute] 获取不到对应的技能目标对象")
  1289. end
  1290. local nSide = ReleaserObj.side
  1291. local tCamp = {}
  1292. -- 检查
  1293. for pos = 1,CombatDefine.COMBAT_HERO_ALL_CNT do
  1294. local obj = CombatImpl.objList[pos]
  1295. if obj and obj.side and nSide == obj.side then
  1296. local nCamp = obj.camp
  1297. if nCamp then
  1298. tCamp[nCamp] = 1
  1299. end
  1300. end
  1301. end
  1302. table.print_lua_table(tCamp)
  1303. local bAllCamp = true
  1304. for i = CombatDefine.CAMP_TYPE1, CombatDefine.CAMP_TYPE5, 1 do
  1305. if not tCamp[i] then
  1306. bAllCamp = false
  1307. break
  1308. end
  1309. end
  1310. for pos = 1,CombatDefine.COMBAT_HERO_ALL_CNT do
  1311. local obj = CombatImpl.objList[pos]
  1312. if obj and obj.side and nSide == obj.side then
  1313. -- 处理百分比值
  1314. -- 治疗
  1315. if tSkilConfig.otherArgs.jobZhiliao then
  1316. --table.print_lua_table(tSkilConfig.otherArgs.jobZhiliao)
  1317. if CombatBuff.isJob(obj, {CombatDefine.JOB_TYPE4}) then
  1318. -- local extraRate = WinnerRelicLogic.WinnerRelic_GetRateAttack(winnerID, winnerStar)
  1319. if not obj.relicAttr.ProAttr[RoleDefine.ZAOCHENG_HP_ADD_RATE] then
  1320. obj.relicAttr.ProAttr[RoleDefine.ZAOCHENG_HP_ADD_RATE] = 0
  1321. end
  1322. local nValue = tSkilConfig.otherArgs.jobZhiliao[2]
  1323. -- print("BeSkill_RelicAttribute 治療 nValue = ".. nValue)
  1324. obj.relicAttr.ProAttr[RoleDefine.ZAOCHENG_HP_ADD_RATE] = obj.relicAttr.ProAttr[RoleDefine.ZAOCHENG_HP_ADD_RATE] + nValue
  1325. if obj.relicAttr.ProAttr[RoleDefine.ZAOCHENG_HP_ADD_RATE] then
  1326. -- print("[BeSkill_RelicAttribute] 治療加成 為 nNewValue = "..obj.relicAttr.ProAttr[RoleDefine.ZAOCHENG_HP_ADD_RATE] )
  1327. else
  1328. -- print("[BeSkill_RelicAttribute] 不存在 nNewValue" )
  1329. end
  1330. end
  1331. end
  1332. -- 免伤 百分比
  1333. if tSkilConfig.otherArgs.jobMianshang then
  1334. if CombatBuff.isJob(obj, {CombatDefine.JOB_TYPE1}) then
  1335. --local extraRate = WinnerRelicLogic.WinnerRelic_GetRateDef(winnerID, winnerStar)
  1336. if not obj.relicAttr.ProAttr[RoleDefine.JIANSHANG_RATE] then
  1337. obj.relicAttr.ProAttr[RoleDefine.JIANSHANG_RATE] = 0
  1338. end
  1339. local nValue = tSkilConfig.otherArgs.jobMianshang[2]
  1340. -- print("BeSkill_RelicAttribute 免伤 nValue = ".. nValue)
  1341. obj.relicAttr.ProAttr[RoleDefine.JIANSHANG_RATE] = obj.relicAttr.ProAttr[RoleDefine.JIANSHANG_RATE] + nValue
  1342. -- print("[BeSkill_RelicAttribute] 免傷加成 為 nValue = "..nValue.." nNewValue = "..obj.relicAttr.ProAttr[RoleDefine.JIANSHANG_RATE])
  1343. end
  1344. end
  1345. -- 防御增加固定值
  1346. if tSkilConfig.otherArgs.jobDefense then
  1347. if CombatBuff.isJob(obj, {CombatDefine.JOB_TYPE4, CombatDefine.JOB_TYPE1}) then
  1348. if winnerID > 0 and winnerStar > 0 then
  1349. local extraRate = WinnerRelicLogic.WinnerRelic_GetRateAttack(winnerID, winnerStar)
  1350. if not obj.relicAttr.FixedAttr[RoleDefine.DEF] then
  1351. obj.relicAttr.FixedAttr[RoleDefine.DEF] = 0
  1352. end
  1353. obj.relicAttr.FixedAttr[RoleDefine.DEF] = obj.relicAttr.FixedAttr[RoleDefine.DEF] + extraRate
  1354. end
  1355. end
  1356. end
  1357. -- 攻击 百分比
  1358. if tSkilConfig.otherArgs.racialAtk then
  1359. if CombatBuff.isCamp(obj, {CombatDefine.COMBAT_TYPE27}) then
  1360. local extraRate = WinnerRelicLogic.WinnerRelic_GetRateAttack(winnerID, winnerStar)
  1361. if not obj.relicAttr.ProAttr[RoleDefine.ATK] then
  1362. obj.relicAttr.ProAttr[RoleDefine.ATK] = 0
  1363. end
  1364. obj.relicAttr.ProAttr[RoleDefine.ATK] = obj.relicAttr.ProAttr[RoleDefine.ATK] + extraRate
  1365. end
  1366. end
  1367. -- 上阵阵容为全职业,加固定值
  1368. if tSkilConfig.otherArgs.winnerfiveraces and bAllCamp == true then
  1369. for _, v in ipairs(tSkilConfig.args) do
  1370. if not obj.relicAttr.FixedAttr[v[1]] then
  1371. obj.relicAttr.FixedAttr[v[1]] = 0
  1372. end
  1373. obj.relicAttr.FixedAttr[v[1]] = obj.relicAttr.FixedAttr[v[1]] + v[2]
  1374. end
  1375. end
  1376. end
  1377. end
  1378. end
  1379. function onFightBegin()
  1380. posSortBySpeed[CombatDefine.ATTACK_SIDE] = {}
  1381. posSortBySpeed[CombatDefine.DEFEND_SIDE] = {}
  1382. for pos = 1,CombatDefine.COMBAT_HERO_ALL_CNT do
  1383. local obj = CombatImpl.objList[pos]
  1384. if obj then
  1385. obj.hp = obj.hp and obj.hp or 1
  1386. end
  1387. end
  1388. for pos = 1,CombatDefine.COMBAT_HERO_ALL_CNT do
  1389. local obj = CombatImpl.objList[pos]
  1390. if obj then
  1391. if obj.beSkillList[BESKILL_TYPE26] then
  1392. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE26]) do
  1393. if canUse(obj,v) then
  1394. --local skillConfig = SkillExcel[v[1]]
  1395. local skillConfig = Skill.GetSkillConfig(v[1])
  1396. if skillConfig.cmd == "attr" then
  1397. for _,v1 in ipairs(skillConfig.args) do
  1398. obj.sysAttr[v1[1]] = obj.sysAttr[v1[1]] +v1[2]
  1399. end
  1400. obj.isSysAttrChange = true
  1401. elseif skillConfig.cmd == "normalTarget" then
  1402. use(obj,{},v)
  1403. elseif skillConfig.cmd == "winnerRelicSkill" then
  1404. use(obj,{},v)
  1405. BeSkill_RelicAttribute(obj, v)
  1406. end
  1407. end
  1408. end
  1409. end
  1410. if pos <= CombatDefine.COMBAT_HERO_CNT then
  1411. posSortBySpeed[CombatDefine.ATTACK_SIDE][#posSortBySpeed[CombatDefine.ATTACK_SIDE]+1] = {pos,obj.attr and obj.attr[RoleDefine.SPEED] or 0}
  1412. elseif pos <= CombatDefine.COMBAT_HERO_CNT * 2 then
  1413. posSortBySpeed[CombatDefine.DEFEND_SIDE][#posSortBySpeed[CombatDefine.DEFEND_SIDE]+1] = {pos,obj.attr and obj.attr[RoleDefine.SPEED] or 0}
  1414. end
  1415. end
  1416. end
  1417. for pos = 1,CombatDefine.COMBAT_HERO_ALL_CNT do
  1418. local obj = CombatImpl.objList[pos]
  1419. if obj then
  1420. obj.hp = nil
  1421. end
  1422. end
  1423. table.sort(posSortBySpeed[CombatDefine.ATTACK_SIDE],posSpeedCmp)
  1424. table.sort(posSortBySpeed[CombatDefine.DEFEND_SIDE],posSpeedCmp)
  1425. end
  1426. function onCombatPetBe(round)
  1427. if round <= 1 then
  1428. return
  1429. end
  1430. for side = 1,CombatDefine.DEFEND_SIDE do
  1431. local pet = CombatImpl.petList[side]
  1432. if pet and pet.petID and pet.beSkillList[BESKILL_TYPE27] then
  1433. for _,v in ipairs(pet.beSkillList[BESKILL_TYPE27]) do
  1434. --local skillConfig = SkillExcel[v[1]]
  1435. local skillConfig = Skill.GetSkillConfig(v[1])
  1436. if skillConfig.cmd == "mp" then
  1437. use(pet,{},v)
  1438. end
  1439. end
  1440. end
  1441. end
  1442. end
  1443. -- 计算被动技能属性
  1444. local beSkillIDList = {}
  1445. function doCalcHero(obj, attrs, skinSkillID, heroConf)
  1446. for i = 1, #beSkillIDList do
  1447. beSkillIDList[i] = nil
  1448. end
  1449. heroConf = heroConf or HeroDefine.getAttrConfig(obj.id, obj.star)
  1450. local beSkillIDs = heroConf.beSkillList
  1451. local skinSkillConf = skinSkillID and SkinSkillExcel[skinSkillID]
  1452. if skinSkillConf then
  1453. beSkillIDs = skinSkillConf.beSkillList
  1454. end
  1455. for _, skillID in ipairs(beSkillIDs) do
  1456. --local skillConfig = SkillExcel[skillID]
  1457. local skillConfig = Skill.GetSkillConfig(skillID)
  1458. if skillConfig.beSkillType == BESKILL_TYPE24 and
  1459. ((not obj) or (obj.quality >= skillConfig.need)) then
  1460. for _,v in ipairs(skillConfig.args) do
  1461. beSkillIDList[#beSkillIDList + 1] = v
  1462. end
  1463. else
  1464. beSkillIDList[#beSkillIDList + 1] = skillID
  1465. end
  1466. end
  1467. for _, skillID in ipairs(beSkillIDList) do
  1468. --local skillConfig = SkillExcel[skillID]
  1469. local skillConfig = Skill.GetSkillConfig(skillID)
  1470. if skillConfig and skillConfig.cmd == "attr" and
  1471. skillConfig.beSkillType == BESKILL_TYPE23 and
  1472. ((not obj) or (obj.quality >= skillConfig.need)) then
  1473. for _, v in ipairs(skillConfig.args) do
  1474. RoleAttr.updateValue(v[1], v[2], attrs)
  1475. end
  1476. elseif skillConfig and skillConfig.cmd == "attrcomboAgain" and
  1477. skillConfig.beSkillType == BESKILL_TYPE70 and
  1478. ((not obj) or (obj.quality >= skillConfig.need)) then
  1479. for i, v in ipairs(skillConfig.args) do
  1480. if v[1] == 1 then
  1481. RoleAttr.updateValue(v[2], v[3], attrs)
  1482. end
  1483. end
  1484. end
  1485. end
  1486. end
  1487. function beforeHit(attacker,defender)
  1488. attacker.beforeHitCheck = false
  1489. if attacker.beSkillList[BESKILL_TYPE40] then
  1490. local hpMax = CombatObj.getHpMax(defender)
  1491. local hp = defender.hp
  1492. local defendHpRate = hp*10000/hpMax
  1493. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE40]) do
  1494. --local skillConfig = SkillExcel[v[1]]
  1495. local skillConfig = Skill.GetSkillConfig(v[1])
  1496. if skillConfig.cmd == "lowerLimit" then
  1497. local args = skillConfig.args
  1498. if defendHpRate < args[1] then
  1499. attacker.beforeHitCheck = true
  1500. attacker.beskill40 = attacker.beskill40 or {}
  1501. attacker.beskill40[defender.pos] = 1
  1502. end
  1503. end
  1504. end
  1505. end
  1506. end
  1507. function afterHit(attacker,target, isEnd)
  1508. if attacker.beforeHitCheck then
  1509. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE40]) do
  1510. use(attacker,{target},v)
  1511. end
  1512. end
  1513. beforeFanji(attacker, isEnd)
  1514. end
  1515. function getOutAtkRate(attacker, defender)
  1516. local outAtkRate = 0
  1517. -- 首次攻击
  1518. local isFirstAttack = CombatImpl.firstAttack[attacker.side]
  1519. if isFirstAttack then
  1520. for _,pos in ipairs(CombatDefine.SIDE2POS[defender.side]) do
  1521. local objM = CombatImpl.objList[pos]
  1522. if objM and objM.beSkillList[BESKILL_TYPE50] then
  1523. for _,v in ipairs(objM.beSkillList[BESKILL_TYPE50]) do
  1524. --local skillConfig = SkillExcel[v[1]]
  1525. local skillConfig = Skill.GetSkillConfig(v[1])
  1526. if skillConfig and skillConfig.otherArgs.outAtkRate then
  1527. if skillConfig.otherArgs.outAtkRate >= outAtkRate then
  1528. outAtkRate = skillConfig.otherArgs.outAtkRate
  1529. end
  1530. end
  1531. end
  1532. end
  1533. end
  1534. end
  1535. return outAtkRate
  1536. end
  1537. function getExtraHurtRate(attacker,defender,skillConfig)
  1538. if not attacker or attacker.isPet then
  1539. return 0
  1540. end
  1541. local zhanyiRet = 0
  1542. local bodongHurtRet = 0
  1543. local zhenduiHurtRate = 0
  1544. local zhenduiLen = 0
  1545. local zhenduiList = {}
  1546. local bezhenduiList = {}
  1547. local hpHurtRate = 0
  1548. local extraSpeedHurt = 0
  1549. local firstHurt = 0
  1550. local sexHurt = 0
  1551. local campHurt = 0
  1552. local reJobHurt = 0
  1553. local buffAndHPSubHurt = 0
  1554. for k,skillList in pairs(attacker.beSkillList) do
  1555. for j,v in pairs(skillList) do
  1556. --local config = SkillExcel[v[1]]
  1557. local config = Skill.GetSkillConfig(v[1])
  1558. if config.cmd == "zhanyi" then --战意 伤害加成
  1559. local nowHp = attacker.hp
  1560. local hpMax = CombatObj.getHpMax(attacker)
  1561. local percent = math.floor( (hpMax - nowHp )/hpMax * 100)
  1562. if percent >= 1 then
  1563. zhanyiRet = zhanyiRet + (percent * config.args[2])
  1564. end
  1565. elseif config.cmd == "fuwenAKH" then
  1566. for i = 1,#config.otherArgs do
  1567. zhenduiLen = zhenduiLen + 1
  1568. zhenduiList[config.otherArgs[i][1]] = zhenduiList[config.otherArgs[i][1]] or 0
  1569. zhenduiList[config.otherArgs[i][1]] = zhenduiList[config.otherArgs[i][1]] + config.otherArgs[i][2]
  1570. end
  1571. elseif config.cmd == "hurtBodong" then
  1572. if canUse(attacker, v) then
  1573. local minRet = config.args[1]
  1574. local maxRet = config.args[2]
  1575. local randomRet = math.random(minRet, maxRet)
  1576. bodongHurtRet = bodongHurtRet + randomRet - 10000
  1577. end
  1578. elseif config.cmd == "hpExtraHurt" then
  1579. local hp = defender.hp
  1580. local beSkillArgs = config.beSkillArgs
  1581. local checkHp = CombatObj.getHpMax(defender) * beSkillArgs[3] / 10000
  1582. if beSkillArgs[2] == 1 and hp > checkHp then
  1583. hpHurtRate = beSkillArgs[4]
  1584. elseif beSkillArgs[2] == 2 and hp < checkHp then
  1585. hpHurtRate = beSkillArgs[4]
  1586. end
  1587. elseif config.cmd == "extraSpeedHurt" then
  1588. extraSpeedHurt = config.args[1]
  1589. elseif config.cmd == "firstAttackHurt" then
  1590. if canUse(attacker, v) then
  1591. firstHurt = config.args[1]
  1592. end
  1593. elseif config.cmd == "buffAndHPSub" then
  1594. local nowHp = defender.hp
  1595. local hpMax = CombatObj.getHpMax(defender)
  1596. local percent = math.floor((hpMax - nowHp )/hpMax * 100) --已损失血量百分比
  1597. local condCfg = config.args
  1598. local condRate = condCfg[1]
  1599. if percent >= condRate then
  1600. local condStatusList = condCfg[2] or {}
  1601. local objNowSatus = CombatBuff.getStatus(defender)
  1602. for buffCmd in pairs(condStatusList) do
  1603. if objNowSatus[buffCmd] then
  1604. buffAndHPSubHurt = condCfg[3] or 0
  1605. break
  1606. end
  1607. end
  1608. end
  1609. end
  1610. end
  1611. end
  1612. for k,skillList in pairs(defender.beSkillList) do
  1613. for j,v in pairs(skillList) do
  1614. --local conf = SkillExcel[v[1]]
  1615. local conf = Skill.GetSkillConfig(v[1])
  1616. if conf then
  1617. if conf.cmd == "befuwenAKH" then
  1618. for i = 1,#conf.otherArgs do
  1619. zhenduiLen = zhenduiLen + 1
  1620. bezhenduiList[conf.otherArgs[i][1]] = bezhenduiList[conf.otherArgs[i][1]] or 0
  1621. bezhenduiList[conf.otherArgs[i][1]] = bezhenduiList[conf.otherArgs[i][1]] + conf.otherArgs[i][2]
  1622. end
  1623. -- 受性别增伤
  1624. elseif conf.cmd == "sexHurt" then
  1625. if attacker.sex == conf.args[1] then
  1626. sexHurt = sexHurt + conf.args[2]
  1627. end
  1628. -- 受阵营增伤
  1629. elseif conf.cmd == "campHurt" then
  1630. if attacker.camp == conf.args[1] then
  1631. campHurt = campHurt + conf.args[2]
  1632. end
  1633. -- 受职业增伤
  1634. elseif conf.cmd == "reJobHurt" then
  1635. if attacker.job == conf.args[1] then
  1636. reJobHurt = reJobHurt + conf.args[2]
  1637. end
  1638. end
  1639. end
  1640. end
  1641. end
  1642. if zhenduiLen > 0 then
  1643. local bAdd = 0
  1644. for k,skillList in pairs(defender.beSkillList) do
  1645. for j,v in pairs(skillList) do
  1646. --local conf = SkillExcel[v[1]]
  1647. local conf = Skill.GetSkillConfig(v[1])
  1648. local isFuWenSkill = v[5]
  1649. if conf.cmd and conf.cmd ~= "" and zhenduiList[conf.cmd] then
  1650. -- 符文技能只生效一个
  1651. if isFuWenSkill == 1 then
  1652. if bAdd == 0 then
  1653. zhenduiHurtRate = zhenduiHurtRate + zhenduiList[conf.cmd]
  1654. bAdd = 1
  1655. end
  1656. else
  1657. zhenduiHurtRate = zhenduiHurtRate + zhenduiList[conf.cmd]
  1658. end
  1659. end
  1660. end
  1661. end
  1662. bAdd = 0
  1663. for k,skillList in pairs(attacker.beSkillList) do
  1664. for j,v in pairs(skillList) do
  1665. --local conf = SkillExcel[v[1]]
  1666. local conf = Skill.GetSkillConfig(v[1])
  1667. local isFuWenSkill = v[5]
  1668. if conf.cmd and conf.cmd ~= "" and bezhenduiList[conf.cmd] then
  1669. if isFuWenSkill == 1 then
  1670. if bAdd == 0 then
  1671. zhenduiHurtRate = zhenduiHurtRate + bezhenduiList[conf.cmd]
  1672. bAdd = 1
  1673. end
  1674. else
  1675. zhenduiHurtRate = zhenduiHurtRate + bezhenduiList[conf.cmd]
  1676. end
  1677. end
  1678. end
  1679. end
  1680. end
  1681. --特殊buff 对血族的加成
  1682. local campHurtRate = 0
  1683. local campRate = nil
  1684. local buffCmd = nil
  1685. local camp = nil
  1686. for _,pos in ipairs(CombatDefine.SIDE2POS[attacker.side]) do
  1687. obj = CombatImpl.objList[pos]
  1688. if obj and obj.hp > 0 then
  1689. if obj.beSkillList[BESKILL_TYPE68] then
  1690. local beSkillList = obj.beSkillList[BESKILL_TYPE68][1]
  1691. --local skillConfig = SkillExcel[beSkillList[1]]
  1692. local skillConfig = Skill.GetSkillConfig(beSkillList[1])
  1693. if skillConfig then
  1694. camp = skillConfig.otherArgs.calcCamp[1]
  1695. buffCmd = skillConfig.otherArgs.calcCamp[2]
  1696. campRate = skillConfig.otherArgs.calcCamp[3]
  1697. break
  1698. end
  1699. end
  1700. end
  1701. end
  1702. if buffCmd and campRate and attacker.camp == camp then
  1703. local campHurtCnt = 0
  1704. for _,pos in ipairs(CombatDefine.SIDE2POS[defender.side]) do
  1705. obj = CombatImpl.objList[pos]
  1706. if obj and obj.hp > 0 then
  1707. local isStatus1, cmd1, ind1 = CombatBuff.isStatus(obj, buffCmd)
  1708. if isStatus1 then
  1709. campHurtCnt = campHurtCnt + 1
  1710. end
  1711. end
  1712. end
  1713. if campHurtCnt > 0 then
  1714. campHurtRate = campHurtCnt * campRate
  1715. end
  1716. end
  1717. local extraHurtRate = zhanyiRet + zhenduiHurtRate + bodongHurtRet + hpHurtRate + extraSpeedHurt + firstHurt + sexHurt + campHurt + reJobHurt + campHurtRate + buffAndHPSubHurt
  1718. if attacker.beSkillList[BESKILL_TYPE40] and attacker.beforeHitCheck then
  1719. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE40]) do
  1720. --local skillConfig = SkillExcel[v[1]]
  1721. local skillConfig = Skill.GetSkillConfig(v[1])
  1722. if skillConfig.cmd == "extraHurt" then
  1723. local args = skillConfig.args
  1724. extraHurtRate = extraHurtRate + args[1]
  1725. end
  1726. end
  1727. end
  1728. return extraHurtRate
  1729. end
  1730. --
  1731. function getExtraHurt(attacker, target, tUseskillConfig)
  1732. local extraHurt = 0
  1733. if attacker.beSkillList[BESKILL_TYPE55] then
  1734. local beSkillList = attacker.beSkillList[BESKILL_TYPE55][1]
  1735. --local skillConfig = SkillExcel[beSkillList[1]]
  1736. local skillConfig = Skill.GetSkillConfig(beSkillList[1])
  1737. local buffCmd = target.bufferCmd[skillConfig.otherArgs.buffCmdHurtRate[1]]
  1738. local rate = skillConfig.otherArgs.buffCmdHurtRate[2] / 10000
  1739. if buffCmd then
  1740. local buffCnt = #buffCmd
  1741. local buffIndex = buffCmd[buffCnt]
  1742. local buffer = target.buffer[buffIndex]
  1743. --local conf = BufferExcel[buffer.id]
  1744. local conf = CombatBuff.GetBuffConfig(buffer.id)
  1745. local hurt = buffer.arg[1]
  1746. extraHurt = extraHurt + hurt * rate * buffCnt
  1747. end
  1748. end
  1749. return extraHurt
  1750. end
  1751. --
  1752. function getRandomBuffCmd(attacker, target, cmd)
  1753. local side = attacker.side
  1754. local mathRandom = math.random
  1755. for _,pos in ipairs(CombatDefine.SIDE2POS[side]) do
  1756. local obj = CombatImpl.objList[pos]
  1757. if obj and obj.hp > 0 and obj.beSkillList[BESKILL_TYPE56] then
  1758. local beSkillList = obj.beSkillList[BESKILL_TYPE56][1]
  1759. --local skillConfig = SkillExcel[beSkillList[1]]
  1760. local skillConfig = Skill.GetSkillConfig(beSkillList[1])
  1761. local buffCmdRand = skillConfig.otherArgs.buffCmdRand
  1762. if buffCmdRand and cmd == buffCmdRand[1] then
  1763. local random = mathRandom(1, 10000)
  1764. if random <= buffCmdRand[2] then
  1765. return true
  1766. end
  1767. end
  1768. end
  1769. end
  1770. end
  1771. function getHurtPercentRate(attacker, defender, hurt, tUseskillConfig)
  1772. local rate = 0
  1773. for k,skillList in pairs(defender.beSkillList) do
  1774. for j,v in pairs(skillList) do
  1775. --local conf = SkillExcel[v[1]]
  1776. local conf = Skill.GetSkillConfig(v[1])
  1777. if conf and conf.cmd == "behurtRet" then
  1778. local canUse = true
  1779. if conf.beSkillArgs and #conf.beSkillArgs > 0 then
  1780. if conf.beSkillArgs[1] == "hurthpper" then
  1781. local hpMax = CombatObj.getHpMax(defender)
  1782. local percent = hurt/hpMax
  1783. if percent < conf.beSkillArgs[2]/10000 then -- 伤害超过目标生命值上限X%时
  1784. canUse = false
  1785. end
  1786. end
  1787. end
  1788. if canUse == true then
  1789. local random = math.random(1, 10000)
  1790. if random <= conf.args[2] then
  1791. rate = rate + conf.args[1]
  1792. end
  1793. end
  1794. end
  1795. end
  1796. end
  1797. if tUseskillConfig.type == CombatDefine.SKILL_TYPE1 then
  1798. if attacker.beSkillList[BESKILL_TYPE1] then
  1799. for _, v in pairs(attacker.beSkillList[BESKILL_TYPE1]) do
  1800. local nSkillID = v[1]
  1801. --local skillConfig = SkillExcel[nSkillID]
  1802. local skillConfig = Skill.GetSkillConfig(nSkillID)
  1803. if skillConfig and skillConfig.hurtRate and skillConfig.hurtRate[1] then
  1804. local fRate = skillConfig.hurtRate[1]
  1805. rate = rate + fRate
  1806. --print("[getExtraHurt] 获取到的普工伤害加成概率 fRate = "..fRate.." 总加成 rate = "..rate)
  1807. end
  1808. end
  1809. end
  1810. end
  1811. return rate
  1812. end
  1813. function getBufferExtraHurt(attacker,bufferID,cmd)
  1814. local rate = 0
  1815. for _,skillList in pairs(attacker.beSkillList) do
  1816. for k,v in pairs(skillList) do
  1817. --local conf = SkillExcel[v[1]]
  1818. local conf = Skill.GetSkillConfig(v[1])
  1819. local otherArgs = conf.otherArgs
  1820. if bufferID and otherArgs.bufferExtraHurt then
  1821. for k1,v1 in ipairs(otherArgs.bufferExtraHurt[1]) do
  1822. if bufferID == v1 then
  1823. rate = rate + otherArgs.bufferExtraHurt[2]
  1824. end
  1825. end
  1826. end
  1827. if cmd and otherArgs.bufferCmdExtraHurt then
  1828. for k1,v1 in ipairs(otherArgs.bufferCmdExtraHurt[1]) do
  1829. if cmd == v1 then
  1830. rate = rate + otherArgs.bufferCmdExtraHurt[2]
  1831. end
  1832. end
  1833. end
  1834. end
  1835. end
  1836. return rate
  1837. end
  1838. function getExtraHurtRateEx(attacker, defender)
  1839. local rate = 0
  1840. -- 死亡数伤害率
  1841. if attacker.beSkillList[BESKILL_TYPE48] then
  1842. for _,v in ipairs(attacker.beSkillList[BESKILL_TYPE48]) do
  1843. --local skillConfig = SkillExcel[v[1]]
  1844. local skillConfig = Skill.GetSkillConfig(v[1])
  1845. if skillConfig and skillConfig.otherArgs.deathHurt then
  1846. local side = defender.side
  1847. for _,pos in ipairs(CombatDefine.SIDE2POS[side]) do
  1848. local obj = CombatImpl.objList[pos]
  1849. if obj and obj.hp <=0 then
  1850. if rate == 0 then
  1851. rate = skillConfig.otherArgs.deathHurt
  1852. else
  1853. rate = rate + 10000
  1854. end
  1855. end
  1856. end
  1857. end
  1858. end
  1859. end
  1860. return rate
  1861. end
  1862. --
  1863. function getBuffChixuHurt(attacker, cmd)
  1864. if not attacker then return 0 end
  1865. local hurt = 0
  1866. local side = attacker.side
  1867. for _,pos in ipairs(CombatDefine.SIDE2POS[side]) do
  1868. local objM = CombatImpl.objList[pos]
  1869. if objM and objM.hp > 0 and objM.beSkillList[BESKILL_TYPE54] then
  1870. for _,v in ipairs(objM.beSkillList[BESKILL_TYPE54]) do
  1871. --local skillConfig = SkillExcel[v[1]]
  1872. local skillConfig = Skill.GetSkillConfig(v[1])
  1873. if skillConfig and skillConfig.otherArgs[cmd] then
  1874. hurt = hurt + skillConfig.otherArgs[cmd]
  1875. end
  1876. end
  1877. end
  1878. end
  1879. return hurt / 10000
  1880. end
  1881. --
  1882. function handlerBuff(attacker, target, arg, cmd)
  1883. if not attacker then return end
  1884. for _,pos in ipairs(CombatDefine.SIDE2POS[attacker.side]) do
  1885. local obj = CombatImpl.objList[pos]
  1886. if obj and obj.hp > 0 and obj.beSkillList[BESKILL_TYPE57] then
  1887. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE57]) do
  1888. attacker.args = arg
  1889. use(attacker, {target}, v, false)
  1890. end
  1891. end
  1892. end
  1893. end
  1894. function beforeMinusHp(obj, value)
  1895. if value <= 0 then return end
  1896. --敌对阵营 有对象有 49号被动技能 加血变成减血
  1897. local side = obj.side == CombatDefine.ATTACK_SIDE and CombatDefine.DEFEND_SIDE or CombatDefine.ATTACK_SIDE
  1898. for _,pos in ipairs(CombatDefine.SIDE2POS[side]) do
  1899. local objM = CombatImpl.objList[pos]
  1900. if objM and objM.hp > 0 and objM.beSkillList[BESKILL_TYPE49] then
  1901. value = value * (-1)
  1902. break
  1903. end
  1904. end
  1905. return value
  1906. end
  1907. function beforeUpdateHp(obj,sum)
  1908. if sum <= 0 and obj.beSkillList[BESKILL_TYPE41] then
  1909. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE41]) do
  1910. --local skillConfig = SkillExcel[v[1]]
  1911. local skillConfig = Skill.GetSkillConfig(v[1])
  1912. if skillConfig.cmd == "miansi" and canUse(obj,v) then
  1913. use(obj,{},v)
  1914. return true
  1915. end
  1916. end
  1917. end
  1918. end
  1919. function onCheckBuffer(obj,attacker,value)
  1920. local ret = value
  1921. if obj.beSkillList[BESKILL_TYPE42] then
  1922. for _,v in ipairs(obj.beSkillList[BESKILL_TYPE42]) do
  1923. --local skillConfig = SkillExcel[v[1]]
  1924. local skillConfig = Skill.GetSkillConfig(v[1])
  1925. if canUse(obj,v) then
  1926. local newFrame = true
  1927. if skillConfig.cmd == "baohu" then
  1928. obj.baohuHurt = value * skillConfig.args[1] / 10000
  1929. if obj.hp < -obj.baohuHurt then
  1930. obj.baohuHurt = -obj.hp
  1931. end
  1932. ret = value - obj.baohuHurt
  1933. newFrame = false
  1934. end
  1935. use(obj,{attacker},v, newFrame)
  1936. break
  1937. end
  1938. end
  1939. end
  1940. return ret
  1941. end
  1942. function getStatusBaoji(attacker, defender)
  1943. local baoji = 0
  1944. local firstBaoji = 0
  1945. for k, skillList in pairs(attacker.beSkillList) do
  1946. for j, v in pairs(skillList) do
  1947. --local config = SkillExcel[v[1]]
  1948. local config = Skill.GetSkillConfig(v[1])
  1949. if config.cmd == "firstAttackHurt" then
  1950. if canUse(attacker, v) then
  1951. firstBaoji = config.args[2] or 0
  1952. end
  1953. end
  1954. end
  1955. end
  1956. if attacker.beSkillList[BESKILL_TYPE60] then
  1957. for _, v in ipairs(attacker.beSkillList[BESKILL_TYPE60]) do
  1958. --local skillConfig = SkillExcel[v[1]]
  1959. local skillConfig = Skill.GetSkillConfig(v[1])
  1960. if skillConfig and skillConfig.otherArgs.addStatusBaoji then
  1961. local status = CombatBuff.getStatus(defender)
  1962. local isStatus = false
  1963. for k, v in ipairs(skillConfig.otherArgs.addStatusBaoji[1]) do
  1964. if status[v] then
  1965. isStatus = true
  1966. break
  1967. end
  1968. end
  1969. if isStatus then
  1970. baoji = baoji + skillConfig.otherArgs.addStatusBaoji[2]
  1971. end
  1972. end
  1973. end
  1974. end
  1975. if attacker.beSkillList[BESKILL_TYPE69] and attacker.notBaoJi then
  1976. for _, v in ipairs(attacker.beSkillList[BESKILL_TYPE69]) do
  1977. --local skillConfig = SkillExcel[v[1]]
  1978. local skillConfig = Skill.GetSkillConfig(v[1])
  1979. if skillConfig and skillConfig.otherArgs.addNotBaoji then
  1980. baoji = baoji + skillConfig.otherArgs.addNotBaoji
  1981. end
  1982. end
  1983. end
  1984. return baoji + firstBaoji
  1985. end
  1986. function getStatusPojia(attacker, defender)
  1987. local poJia = 0
  1988. -- 对指定状态破甲加成 走的技能状态属性
  1989. if attacker.beSkillList[BESKILL_TYPE60] then
  1990. for _, v in ipairs(attacker.beSkillList[BESKILL_TYPE60]) do
  1991. --local skillConfig = SkillExcel[v[1]]
  1992. local skillConfig = Skill.GetSkillConfig(v[1])
  1993. if skillConfig.otherArgs.addStatusPoJia then
  1994. local status = CombatBuff.getStatus(defender)
  1995. local isStatus = false
  1996. for k, v in ipairs(skillConfig.otherArgs.addStatusPoJia[1]) do
  1997. if status[v] then
  1998. isStatus = true
  1999. break
  2000. end
  2001. end
  2002. if isStatus then
  2003. poJia = poJia + skillConfig.otherArgs.addStatusPoJia[2]
  2004. end
  2005. end
  2006. end
  2007. end
  2008. return poJia
  2009. end