Formula

CommonFun.calcBuff_3310

function CommonFun.calcBuff_3310(srcUser, targetUser, a, b, c, d, lv)
  if srcUser == nil or targetUser == nil then
    return 0
  end
  local Flee = srcUser:GetProperty("Flee")
  local A = math.floor(Flee / 10 * 1)
  if A <= 0 then
    return 0
  end
  return A
end