Formula

CommonFun.calcBuff_3700

function CommonFun.calcBuff_3700(srcUser, targetUser, a, b, c, d, lv)
  if srcUser == nil or targetUser == nil then
    return 0
  end
  local MDamReduc = srcUser:GetProperty("MDamReduc")
  local A = math.floor(MDamReduc * 100 * 75)
  if A <= 0 then
    return 0
  end
  return A
end