Formula

CommonFun.calcBuff_6635

function CommonFun.calcBuff_6635(srcUser, targetUser, a, b, c, d, lv, damage)
  if srcUser == nil or targetUser == nil then
    return 0
  end
  if damage <= 1 then
    return 1
  end
  return damage * a * lv
end