Formula

CommonFun.calcBuff_7702

function CommonFun.calcBuff_7702(srcUser, targetUser, a, b, c, d, lv)
  if srcUser == nil or targetUser == nil then
    return 0
  end
  local A = a
  local IBaseLv = srcUser.BaseLv
  if 125 <= IBaseLv and IBaseLv < 140 then
    A = A + b
  elseif 140 <= IBaseLv then
    A = A + b + c
  end
  return A
end