Formula

CommonFun.calcBuff_4140

function CommonFun.calcBuff_4140(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 == 44005_ORLEANS_S_GLOVES_ORLEANS_S_GLOVES or Ring1 == 144005_ORLEANS_S_GLOVES_1_ORLEANS_S_GLOVES_1) and 12 <= RefineLv1 and 9 <= order1 then
    a = 0.03
  end
  if (Ring2 == 44005_ORLEANS_S_GLOVES_ORLEANS_S_GLOVES or Ring2 == 144005_ORLEANS_S_GLOVES_1_ORLEANS_S_GLOVES_1) and 12 <= RefineLv2 and 9 <= order2 then
    b = 0.03
  end
  if (Ring1 == 44005_ORLEANS_S_GLOVES_ORLEANS_S_GLOVES or Ring1 == 144005_ORLEANS_S_GLOVES_1_ORLEANS_S_GLOVES_1) and (Ring2 == 44005_ORLEANS_S_GLOVES_ORLEANS_S_GLOVES or Ring2 == 144005_ORLEANS_S_GLOVES_1_ORLEANS_S_GLOVES_1) and 9 <= order1 and 9 <= order2 then
    c = 2
  end
  local A = (a + b) / c
  return A
end