Skip to content

Commit

Permalink
Revert "[KA] Added Chaurus Bite projectile announcements"
Browse files Browse the repository at this point in the history
This reverts commit 46d8de2.

It was decided that this announcement is superfluous.
  • Loading branch information
MysteryDragon committed Nov 8, 2021
1 parent a904780 commit 517e57e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 24 deletions.
2 changes: 0 additions & 2 deletions BuffsDebuffs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -597,8 +597,6 @@ kynes_aegis.yandir_harpy_totem_spawn = 133511
kynes_aegis.yandir_gargoyle_totem_spawn = 133514
-- Chaurus Totem spawn at Yandir the Butcher boss
kynes_aegis.yandir_chaurus_totem_spawn = 133516
-- Chaurus Bile, projectile from Chaurus Totem at Yandir the Butcher boss
kynes_aegis.yandir_chaurus_bile = 133559
-- Meteor casted by Vrolsworn Fire Mage during the Captain Vrol boss encounter
kynes_aegis.vrol_firemage_meteor = 134023
-- Effect which fires when Lord Falgravn starts his Ichor Eruption mechanic
Expand Down
8 changes: 0 additions & 8 deletions Settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,6 @@ do ------------------
bitter_knight_sanguine_prison = false,
bloodknight_blood_fountain = false,
yandir_totem_spawn = 0, -- "Off"
yandir_chaurus_bile = 0, -- "Off"
vrol_firemage_meteor = 0, -- "Off"
falgravn_ichor_eruption = false,
falgravn_ichor_eruption_time_before = 3,
Expand Down Expand Up @@ -555,7 +554,6 @@ function RaidNotifier:CreateSettingsMenu()
L.Settings_General_Choices_OnlyChaurusTotem,
L.Settings_General_Choices_All,
},
yandir_chaurus_bile = off_self_all,
vrol_firemage_meteor = off_self_all,
},
rockgrove = {
Expand Down Expand Up @@ -1621,12 +1619,6 @@ function RaidNotifier:CreateSettingsMenu()
tooltip = L.Settings_KynesAegis_Totem_TT,
choices = choices.kynesAegis.yandir_totem_spawn,
}, "kynesAegis", "yandir_totem_spawn")
MakeControlEntry({
type = "dropdown",
name = L.Settings_KynesAegis_Chaurus_Bile,
tooltip = L.Settings_KynesAegis_Chaurus_Bile_TT,
choices = choices.kynesAegis.yandir_chaurus_bile,
}, "kynesAegis", "yandir_chaurus_bile")
MakeControlEntry({
type = "dropdown",
name = L.Settings_KynesAegis_Vrol_FireMage_Meteor,
Expand Down
10 changes: 0 additions & 10 deletions TrialKynesAegis.lua
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,6 @@ function RaidNotifier.KA.OnCombatEvent(_, result, isError, aName, aGraphic, aAct
self:AddAnnouncement(GetString(RAIDNOTIFIER_ALERTS_KYNESAEGIS_CHAURUS_TOTEM), "kynesAegis", "yandir_totem_spawn")
end
end
-- Chaurus Bile projectile from Chaurus Totem at Yandir the Butcher boss
if (abilityId == buffsDebuffs.yandir_chaurus_bile) then
if (settings.yandir_chaurus_bile >= 1) then
if (tType == COMBAT_UNIT_TYPE_PLAYER) then
self:AddAnnouncement(GetString(RAIDNOTIFIER_ALERTS_KYNESAEGIS_CHAURUS_BILE_SELF), "kynesAegis", "yandir_chaurus_bile")
elseif (settings.yandir_chaurus_bile == 2) then
self:AddAnnouncement(GetString(RAIDNOTIFIER_ALERTS_KYNESAEGIS_CHAURUS_BILE_COMMON), "kynesAegis", "yandir_chaurus_bile", 2)
end
end
end
-- Vrolsworn Fire Mage's meteors (3 meteors at once)
-- hitValue = 1 for casting or 2250 as the duration of meteor's reaching the targets
if (abilityId == buffsDebuffs.vrol_firemage_meteor and hitValue > 1) then
Expand Down
4 changes: 0 additions & 4 deletions lang/en.lua
Original file line number Diff line number Diff line change
Expand Up @@ -561,8 +561,6 @@ L.Settings_KynesAegis_Blood_Fountain = "General: Blood Fountain"
L.Settings_KynesAegis_Blood_Fountain_TT = "Alerts you when Bloodknight starts his Blood Fountain attack, counting down until it is unleashed. It looks like cross-shaped AoE, and need to be avoided as it deals heavy damage."
L.Settings_KynesAegis_Totem = "Yandir: Totems spawn"
L.Settings_KynesAegis_Totem_TT = "Alerts you when certain totem appeared during the battle with Yandir the Butcher boss.\n\nDragon Totems: always two appears at the same time; each one blows out fire along a straight line in two opposite directions.\nHarpy Totem: spawns a lightning aura that will radiate out.\nGargoyle totem: encases random players into stone.\nChaurus Totem: poisons several people, and this poison should not be spread to others, that's why you should not stack at this phase."
L.Settings_KynesAegis_Chaurus_Bile = "Yandir: Chaurus Bile"
L.Settings_KynesAegis_Chaurus_Bile_TT = "Alerts you when Chaurus Totem launch Chaurus Bile projectiles towards random group members. This projectile can be dodged."
L.Settings_KynesAegis_Vrol_FireMage_Meteor = "Vrol: Meteors"
L.Settings_KynesAegis_Vrol_FireMage_Meteor_TT = "Alerts you when Vrolsworn Fire Mages from the boat will cast meteors on players."
L.Settings_KynesAegis_Ichor_Eruption = "Falgravn: Ichor Eruption"
Expand All @@ -578,8 +576,6 @@ L.Alerts_KynesAegis_Dragon_Totem = "Two |cffa500Dragon Totems
L.Alerts_KynesAegis_Harpy_Totem = "|c00bfffHarpy Totem|r spawned."
L.Alerts_KynesAegis_Gargoyle_Totem = "|cf5f5dcGargoyle Totem|r spawned."
L.Alerts_KynesAegis_Chaurus_Totem = "|c39942eChaurus Totem|r spawned. Don't stack!"
L.Alerts_KynesAegis_Chaurus_Bile_Self = "|c39942eChaurus Bile|r incoming at you. Dodge!"
L.Alerts_KynesAegis_Chaurus_Bile_Common = "|c39942eChaurus Bile|r incoming!"
L.Alerts_KynesAegis_Vrol_FireMage_Meteor = "|cffa500Meteor|r on you in"
L.Alerts_KynesAegis_Vrol_FireMage_Meteor_Other = "Meteors in"
L.Alerts_KynesAegis_Ichor_Eruption = "|cb00000Ichor Eruption|r in"
Expand Down

0 comments on commit 517e57e

Please sign in to comment.