Formula

CommonFun.calcBuff_8091

function CommonFun.calcBuff_8091(srcUser, targetUser, a, b, c, d, lv, damage)
  if srcUser == nil or targetUser == nil then
    return 0
  end
  local MaxHp = targetUser:GetProperty("MaxHp")
  local mapid, maptype = targetUser:GetMapInfo()
  local A = MaxHp * a
  return A
end