diff --git a/AuraData.lua b/AuraData.lua index 8941838..fa88033 100644 --- a/AuraData.lua +++ b/AuraData.lua @@ -466,8 +466,10 @@ local potionDurations = { [L.Potion_Draught] = 11.7, --lvl 31-35 [L.Potion_Solution] = 13, --lvl 36-40 [L.Potion_Philter] = 14.3, --lvl 41-45 - [L.Potion_Elixir] = 15.8, --lvl 46-51 3.3 + (46+51) / 2 * 0.257 = 15.7645 - [L.Potion_Panacea] = 18, --VR 5 3.3 + 57 * 0.257 = 17.949 + [L.Potion_Elixir] = 16.7, --lvl 46-51 3.3 + (46+51) / 2 * 0.257 = 15.7645 + [L.Potion_Panacea] = 18.2, --VR 5 + [L.Potion_Distillate] = 20.3, --VR 10 + [L.Potion_Essence] = 22.1, --VR 15 }, [2] = { --crafted 2 ingredients potions with long buff [L.Potion_Sip] = 10.5, --lvl 3 9 + 4 * 0.375 = 10.425 (9 + itemLevel * 0.375) @@ -477,6 +479,8 @@ local potionDurations = { [L.Potion_Solution] = 24.3, --lvl 40 9 + 41 * 0.375 = 24.375 [L.Potion_Elixir] = 28.8, --VR 1 9 + 53 * 0.375 = 28.875 [L.Potion_Panacea] = 31, --VR 5 9 + 59 * 0.375 = 31.125 + [L.Potion_Distillate] = 34, --VR 10 + [L.Potion_Essence] = 37, --VR 15 }, [3] = { --crafted 3 ingredients potions with long buff (+4 sec) [L.Potion_Sip] = 14.5, --lvl 3 @@ -486,6 +490,8 @@ local potionDurations = { [L.Potion_Solution] = 28.3, --lvl 40 [L.Potion_Elixir] = 32.8, --VR 1 [L.Potion_Panacea] = 35, --VR 5 + [L.Potion_Distillate] = 38, --VR 10 + [L.Potion_Essence] = 42, --VR 15 }, [4] = { --crafted 2 ingredients potions with short buff [L.Potion_Sip] = 4.5, --lvl 3 4 + 4 * 0.129 = 4.516 @@ -495,6 +501,8 @@ local potionDurations = { [L.Potion_Solution] = 9.3, --lvl 40 4 + 41 * 0.129 = 9.289 [L.Potion_Elixir] = 10.8, --VR 1 4 + 53 * 0.129 = 10.837 [L.Potion_Panacea] = 11.6, --VR 5 4 + 59 * 0.129 = 11.611 + [L.Potion_Distillate] = 12.4, --VR 10 + [L.Potion_Essence] = 13.2, --VR 15 }, [5] = { --crafted 3 ingredients potions with short buff (+2 sec) [L.Potion_Sip] = 6.5, --lvl 3 @@ -504,6 +512,8 @@ local potionDurations = { [L.Potion_Solution] = 11.3, --lvl 40 [L.Potion_Elixir] = 12.8, --VR 1 [L.Potion_Panacea] = 13.6, --VR 5 + [L.Potion_Distillate] = 14.4, --VR 10 + [L.Potion_Essence] = 15.2, --VR 15 }, } diff --git a/Locales/Local_de.lua b/Locales/Local_de.lua index ecb3ea0..28d0d44 100644 --- a/Locales/Local_de.lua +++ b/Locales/Local_de.lua @@ -44,7 +44,9 @@ L.Potion_Draught = "Mundvoll" L.Potion_Solution = "Lösung" L.Potion_Philter = "Zaubertrank" L.Potion_Elixir = "Elixier" -L.Potion_Panacea = "Panazee" +L.Potion_Panacea = "Panazee" -- v5 +L.Potion_Distillate = "Destillat" -- v10 +L.Potion_Essence = "Essenz" -- v15 -- --------------------------------------------------- diff --git a/Locales/Local_en.lua b/Locales/Local_en.lua index 217ff65..d826950 100644 --- a/Locales/Local_en.lua +++ b/Locales/Local_en.lua @@ -611,7 +611,9 @@ L.Potion_Draught = "Draught" L.Potion_Solution = "Solution" L.Potion_Philter = "Philter" L.Potion_Elixir = "Elixir" -L.Potion_Panacea = "Panacea" +L.Potion_Panacea = "Panacea" -- v5 +L.Potion_Distillate = "Distillate" -- v10 +L.Potion_Essence = "Essence" -- v15 -- --------------------------------------------------- -- SETTINGS ------------------------------------------