Formula

CommonFun.calcBuff_5640

function CommonFun.calcBuff_5640(srcUser, targetUser, a, b, c, d, lv)
  if srcUser == nil or targetUser == nil then
    return 0
  end
  local Ring1 = srcUser:GetEquipedID(5_ACCESSORY)
  local RefineLv1 = srcUser:GetEquipedRefineLv(5_ACCESSORY)
  local Ring2 = srcUser:GetEquipedID(6_ACCESSORY)
  local RefineLv2 = srcUser:GetEquipedRefineLv(6_ACCESSORY)
  local order1 = srcUser:getEquipLv(5)
  local order2 = srcUser:getEquipLv(6)
  local a = 0
  local b = 0
  local c = 1
  if (Ring1 == 44030_AGI_PIN_AGI_PIN or Ring1 == 144030_AGI_PIN_1_AGI_PIN_1) and 8 <= RefineLv1 and 8 <= order1 then
    a = 0.03
  end
  if (Ring2 == 44030_AGI_PIN_AGI_PIN or Ring2 == 144030_AGI_PIN_1_AGI_PIN_1) and 8 <= RefineLv2 and 8 <= order2 then
    b = 0.03
  end
  if (Ring1 == 44030_AGI_PIN_AGI_PIN or Ring1 == 144030_AGI_PIN_1_AGI_PIN_1) and (Ring2 == 44030_AGI_PIN_AGI_PIN or Ring2 == 144030_AGI_PIN_1_AGI_PIN_1) and 8 <= order1 and 8 <= order2 then
    c = 2
  end
  local A = (a + b) / c
  return A
end