Skip to content

Commit

Permalink
added algari Healing Potions
Browse files Browse the repository at this point in the history
  • Loading branch information
ollidiemaus committed Jul 28, 2024
1 parent 440d54f commit 5a68cd2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AutoPotion.toc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Interface-Classic: 11503
## Interface-WOTLKC: 30403
## Interface-Cata: 40400
## Version: 3.5.2
## Version: 3.5.3
## Title: Auto Potion
## Author: ollidiemaus
## Notes: Updates the Macro AutoPotion to use either Healthstone or the highest Potion found in Bags
Expand Down
12 changes: 12 additions & 0 deletions Core/Potions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ local isCata = (WOW_PROJECT_ID == WOW_PROJECT_CATACLYSM_CLASSIC)
--ham.leywine = ham.Item.new(194684,"Azure Leywine")
--ham.healthstone = ham.Item.new(117, "Healthstone")
ham.healthstone = ham.Item.new(5512, "Healthstone")
ham.algariHealingPotionR3 = ham.Item.new(211880, "Algari Healing Potion")
ham.algariHealingPotionR2 = ham.Item.new(211879, "Algari Healing Potion")
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.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")
Expand Down Expand Up @@ -91,6 +97,12 @@ end
function ham.getPots()
if isRetail then
local pots = {
ham.algariHealingPotionR3,
ham.algariHealingPotionR2,
ham.algariHealingPotionR1,
ham.fleetingAlgariHealingPotionR3,
ham.fleetingAlgariHealingPotionR2,
ham.fleetingAlgariHealingPotionR1,
ham.thirdWind,
ham.dreamR3,
ham.dreamsR2,
Expand Down

0 comments on commit 5a68cd2

Please sign in to comment.