Formula

CommonFun.calcBuff_3650

function CommonFun.calcBuff_3650(srcUser, targetUser, a, b, c, d, lv)
  if srcUser == nil or targetUser == nil then
    return 0
  end
  local Int = srcUser:GetProperty("Int")
  local skilllv_1 = srcUser:GetLernedSkillLevel(1128_ARCANE_MASTER:GENETIC_MODIFICATION)
  local A = math.floor(Int * (skilllv_1 - 10) * 0.2)
  if A <= 0 then
    return 0
  end
  return A
end