Formula

CommonFun.calcBuff_7110

function CommonFun.calcBuff_7110(srcUser, targetUser, a, b, c, d, lv, damage)
  if srcUser == nil or targetUser == nil then
    return 0
  end
  local MaxHp = srcUser:GetProperty("MaxHp")
  local RefineLv = srcUser:GetEquipedRefineLv(8)
  local mapid, maptype = srcUser:GetMapInfo()
  local A = MaxHp * 0.05
  if 10 <= RefineLv then
    A = A + MaxHp * 0.05
  end
  return A
end