Skip to content

Commit

Permalink
Add the old Symphony
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisSpomer committed Oct 25, 2022
1 parent c846780 commit 32048ba
Show file tree
Hide file tree
Showing 9 changed files with 60 additions and 1 deletion.
2 changes: 1 addition & 1 deletion HearKitty_SoundPacks.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 100000
## Dependencies: HearKitty
## Version: Volume 2 (WoW 10.0.0)
## Version: Volume 3
## Title: Hear Kitty: official sounds
## Notes: Adds several additional sound packs to Hear Kitty.

Expand Down
6 changes: 6 additions & 0 deletions Readme.htm
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ <h1>Hear Kitty official sound packs</h1>
<p>
This package includes several different sound packs for use in Hear Kitty:</p>
<ul>
<li>Symphony</li>
<li>Symphony (loud)</li>
<li>Symphony (quiet)</li>
<li>Crystal</li>
Expand Down Expand Up @@ -41,6 +42,11 @@ <h2>Notes</h2>
<a target="_blank" href="http://www.vgermods.com/">official site</a>, with links
to my mods.</p>
<h2>Release history</h2>
<h3>Volume 3</h3>
<ul>
<li>Added the old default sound pack, Symphony, that was replaced in Hear
Kitty 1.10.</li>
</ul>
<h3>Volume 2a</h3>
<ul>
<li>Added a quieter version of Crystal.</li>
Expand Down
53 changes: 53 additions & 0 deletions SoundPack.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,59 @@
if KittyRegisterSoundPack then
local LocalizedName

------------------------------------------------------------
LocalizedName = "Symphony"
if (GetLocale() == "frFR" or GetLocale() == "deDE") then
LocalizedName = "Symphonie"
elseif (GetLocale() == "esES" or GetLocale() == "esMX") then
LocalizedName = "Sinfonía"
elseif (GetLocale() == "ptBR") then
LocalizedName = "Sinfonia"
elseif (GetLocale() == "ruRU") then
LocalizedName = "Маркато"
end
KittyRegisterSoundPack("Symphony", {
LocalizedName = LocalizedName,
Credits = KittyUIFrame_AboutHeaderLabel_Text,
SoundDelay = 0.35,
LongSoundDelay = 1,

Combo7StackSound0 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\0.ogg",
Combo7StackSound1 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\1.ogg",
Combo7StackSound2 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\2.ogg",
Combo7StackSound3 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\1.ogg",
Combo7StackSound4 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\2.ogg",
Combo7StackSound5 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\3.ogg",
Combo7StackSound6 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\4.ogg",
Combo7StackSound7 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\5.ogg",

Combo6StackSound0 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\0.ogg",
Combo6StackSound1 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\2.ogg",
Combo6StackSound2 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\1.ogg",
Combo6StackSound3 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\2.ogg",
Combo6StackSound4 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\3.ogg",
Combo6StackSound5 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\4.ogg",
Combo6StackSound6 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\5.ogg",

Combo5StackSound0 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\0.ogg",
Combo5StackSound1 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\1.ogg",
Combo5StackSound2 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\2.ogg",
Combo5StackSound3 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\3.ogg",
Combo5StackSound4 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\4.ogg",
Combo5StackSound5 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\5.ogg",

Combo4StackSound0 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\0.ogg",
Combo4StackSound1 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\1.ogg",
Combo4StackSound2 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\2.ogg",
Combo4StackSound3 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\4.ogg",
Combo4StackSound4 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\5.ogg",

Combo3StackSound0 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\0.ogg",
Combo3StackSound1 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\3.ogg",
Combo3StackSound2 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\4.ogg",
Combo3StackSound3 = "Interface\\AddOns\\HearKitty_SoundPacks\\Symphony\\5.ogg",
})

------------------------------------------------------------
LocalizedName = "Symphony (quiet)"
if (GetLocale() == "frFR") then
Expand Down
Binary file added Symphony/0.ogg
Binary file not shown.
Binary file added Symphony/1.ogg
Binary file not shown.
Binary file added Symphony/2.ogg
Binary file not shown.
Binary file added Symphony/3.ogg
Binary file not shown.
Binary file added Symphony/4.ogg
Binary file not shown.
Binary file added Symphony/5.ogg
Binary file not shown.

0 comments on commit 32048ba

Please sign in to comment.