From 5fb5ed003dc4d453f01ab3b294d69c305aae115e Mon Sep 17 00:00:00 2001 From: ollidiemaus Date: Sun, 25 Aug 2024 08:49:11 +0200 Subject: [PATCH] added cavedwellers delight --- AutoPotion.toc | 2 +- Core/Potions.lua | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/AutoPotion.toc b/AutoPotion.toc index 434dd59..cfaad48 100755 --- a/AutoPotion.toc +++ b/AutoPotion.toc @@ -2,7 +2,7 @@ ## Interface-Classic: 11503 ## Interface-WOTLKC: 30403 ## Interface-Cata: 40400 -## Version: 3.5.7 +## Version: 3.5.8 ## Title: Auto Potion ## Author: ollidiemaus ## Notes: Updates the Macro AutoPotion to use either Healthstone or the highest Potion found in Bags diff --git a/Core/Potions.lua b/Core/Potions.lua index 152bbd6..bf3f871 100644 --- a/Core/Potions.lua +++ b/Core/Potions.lua @@ -13,6 +13,12 @@ ham.algariHealingPotionR1 = ham.Item.new(211878, "Algari Healing Potion") ham.fleetingAlgariHealingPotionR3 = ham.Item.new(212944, "Fleeting Algari Healing Potion") ham.fleetingAlgariHealingPotionR2 = ham.Item.new(212943, "Fleeting Algari Healing Potion") ham.fleetingAlgariHealingPotionR1 = ham.Item.new(212942, "Fleeting Algari Healing Potion") +ham.cavedwellersDelightR3 = ham.Item.new(212244, "Cavedweller's Delight") +ham.cavedwellersDelightR2 = ham.Item.new(212243, "Cavedweller's Delight") +ham.cavedwellersDelightR1 = ham.Item.new(212242, "Cavedweller's Delight") +ham.fleetingCavedwellersDelightR3 = ham.Item.new(212950, "Fleeting Cavedweller's Delight") +ham.fleetingCavedwellersDelightR2 = ham.Item.new(212949, "Fleeting Cavedweller's Delight") +ham.fleetingCavedwellersDelightR1 = ham.Item.new(212948, "Fleeting Cavedweller's Delight") ham.thirdWind = ham.Item.new(138486, "\"Third Wind\" Potion") ham.witheringDreamsR3 = ham.Item.new(207041, "Potion of Withering Dreams") ham.witheringDreamsR2 = ham.Item.new(207040, "Potion of Withering Dreams") @@ -103,6 +109,12 @@ function ham.getPots() ham.fleetingAlgariHealingPotionR3, ham.fleetingAlgariHealingPotionR2, ham.fleetingAlgariHealingPotionR1, + ham.cavedwellersDelightR3, + ham.cavedwellersDelightR2, + ham.cavedwellersDelightR1, + ham.fleetingCavedwellersDelightR3, + ham.fleetingCavedwellersDelightR2, + ham.fleetingCavedwellersDelightR1, ham.thirdWind, ham.dreamR3, ham.dreamsR2,