Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisSpomer committed Feb 24, 2022
0 parents commit 88e69a1
Show file tree
Hide file tree
Showing 33 changed files with 864 additions and 0 deletions.
Binary file added Crystal/0.ogg
Binary file not shown.
Binary file added Crystal/1.ogg
Binary file not shown.
Binary file added Crystal/2.ogg
Binary file not shown.
Binary file added Crystal/4.ogg
Binary file not shown.
Binary file added Crystal/5.ogg
Binary file not shown.
Binary file added CrystalQuiet/0.ogg
Binary file not shown.
Binary file added CrystalQuiet/1.ogg
Binary file not shown.
Binary file added CrystalQuiet/2.ogg
Binary file not shown.
Binary file added CrystalQuiet/4.ogg
Binary file not shown.
Binary file added CrystalQuiet/5.ogg
Binary file not shown.
7 changes: 7 additions & 0 deletions HearKitty_SoundPacks.toc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Interface: 90200
## Dependencies: HearKitty
## Version: Volume 2 (WoW 9.2.0)
## Title: Hear Kitty: official sounds
## Notes: Adds several additional sound packs to Hear Kitty.

SoundPack.lua
Binary file added Powerup/0.ogg
Binary file not shown.
Binary file added Powerup/1.ogg
Binary file not shown.
Binary file added Powerup/2.ogg
Binary file not shown.
Binary file added Powerup/4.ogg
Binary file not shown.
Binary file added Powerup/5.ogg
Binary file not shown.
65 changes: 65 additions & 0 deletions Readme.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Hear Kitty official sound packs</title>
<link rel="stylesheet" type="text/css" href="VgerCore/VgerCore.css" />
</head>
<body>

<h1>Hear Kitty official sound packs</h1>

<p>
This package includes several different sound packs for use in Hear Kitty:</p>
<ul>
<li>Symphony (loud)</li>
<li>Symphony (quiet)</li>
<li>Crystal</li>
<li>Crystal (quiet)</li>
<li>Powerup</li>
</ul>
<h2>
Installing</h2>
<p>
Install these Hear Kitty sound packs just like you would any other World of
Warcraft add-on, including Hear Kitty, by copying them to your Interface
AddOns folder.&nbsp; You need Hear Kitty 1.2 or later installed to use sound
packs.</p>
<h2>Choosing new sounds</h2>
<p>To choose a new set of sounds for Hear Kitty, open the World of Warcraft game
menu, then click Interface, and then the AddOns tab in the upper-left.&nbsp;
Choose Hear Kitty from the list.&nbsp; Then, find the dropdown labeled "sound
pack" and choose a new sound pack.&nbsp; When you click one, you'll hear a
preview of its tones.</p>
<p>You can choose a different sound pack for each of your characters.</p>
<h2>Notes</h2>
<p>The best way to contact me is through
the Hear Kitty sound packs page on
<a href="http://wow.curse.com/downloads/wow-addons/details/hear-kitty-alt-volume.aspx" target="_blank">Curse</a>.&nbsp; You can also contact me via in-game mail: Vger on Azjol-Nerub (US,
Horde).&nbsp;
If you contact me via in-game mail, be sure to keep a character on Azjol-Nerub
and check your mail!&nbsp; Also, check out my
<a target="_blank" href="http://www.vgermods.com/">official site</a>, with links
to my mods.</p>
<h2>Release history</h2>
<h3>Volume 2a</h3>
<ul>
<li>Added a quieter version of Crystal.</li>
</ul>
<h3>Volume 2</h3>
<ul>
<li>Updated for Hear Kitty version 1.4.&nbsp; The new updated version of
Volume 2 will work on Hear Kitty version 1.4 as well as previous versions of
Hear Kitty.</li>
<li>Added the Crystal and Powerup sound packs.</li>
</ul>
<h3>Volume 1</h3>
<ul>
<li>Includes Symphony (loud) and Symphony (quiet).</li>
</ul>
<h2>The fine print</h2>
<p>© 2006-2022 Green Eclipse.&nbsp; This mod is released under the Creative Commons
<a href="http://creativecommons.org/licenses/by-nc-nd/3.0/" target="_blank">
Attribution-NonCommercial-NoDerivs 3.0</a> license.&nbsp; In short, this means
that you can use it, copy it, and share it, but you can't sell it or distribute
your own altered versions without permission. By using the mod you agree to the terms of the license. For more information, click the link.</p>
</body></html>
206 changes: 206 additions & 0 deletions SoundPack.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,206 @@
-- Hear Kitty official sound packs by Vger-Azjol-Nerub
-- www.vgermods.com
------------------------------------------------------------

if KittyRegisterSoundPack then
local LocalizedName

------------------------------------------------------------
LocalizedName = "Symphony (quiet)"
if (GetLocale() == "frFR") then
LocalizedName = "Symphonie (calme)"
elseif (GetLocale() == "esES" or GetLocale() == "esMX") then
LocalizedName = "Sinfonía (tranquilo)"
end
KittyRegisterSoundPack("SymphonyQuiet", {
LocalizedName = LocalizedName,
Credits = KittyUIFrame_AboutHeaderLabel_Text,
SoundDelay = 0.35,
LongSoundDelay = 1,

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

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

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

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

------------------------------------------------------------
LocalizedName = "Symphony (loud)"
if (GetLocale() == "frFR") then
LocalizedName = "Symphonie (fort)"
elseif (GetLocale() == "esES" or GetLocale() == "esMX") then
LocalizedName = "Sinfonía (fuerte)"
end
KittyRegisterSoundPack("SymphonyLoud", {
LocalizedName = LocalizedName,
Credits = KittyUIFrame_AboutHeaderLabel_Text,
SoundDelay = 0.35,
LongSoundDelay = 1,

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

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

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

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

------------------------------------------------------------
LocalizedName = "Crystal"
if (GetLocale() == "frFR" or GetLocale() == "esES" or GetLocale() == "esMX") then
LocalizedName = "Cristal"
end
KittyRegisterSoundPack("Crystal", {
LocalizedName = LocalizedName,
Credits = KittyUIFrame_AboutHeaderLabel_Text,
SoundDelay = 0.35,
LongSoundDelay = 1,

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

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

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

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

------------------------------------------------------------
LocalizedName = "Crystal (quiet)"
if (GetLocale() == "frFR") then
LocalizedName = "Cristal (calme)"
elseif (GetLocale() == "esES" or GetLocale() == "esMX") then
LocalizedName = "Cristal (tranquilo)"
end
KittyRegisterSoundPack("CrystalQuiet", {
LocalizedName = LocalizedName,
Credits = KittyUIFrame_AboutHeaderLabel_Text,
SoundDelay = 0.35,
LongSoundDelay = 1,

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

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

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

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

------------------------------------------------------------
LocalizedName = "Powerup"
if (GetLocale() == "frFR") then
LocalizedName = "PowerUp"
elseif (GetLocale() == "esES" or GetLocale() == "esMX") then
LocalizedName = "Encendido"
end
KittyRegisterSoundPack("Powerup", {
LocalizedName = LocalizedName,
Credits = KittyUIFrame_AboutHeaderLabel_Text,
SoundDelay = 0.35,
LongSoundDelay = 1,

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

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

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

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

end
Binary file added SymphonyLoud/0.ogg
Binary file not shown.
Binary file added SymphonyLoud/1.ogg
Binary file not shown.
Binary file added SymphonyLoud/2.ogg
Binary file not shown.
Binary file added SymphonyLoud/3.ogg
Binary file not shown.
Binary file added SymphonyLoud/4.ogg
Binary file not shown.
Binary file added SymphonyLoud/5.ogg
Binary file not shown.
Binary file added SymphonyQuiet/0.ogg
Binary file not shown.
Binary file added SymphonyQuiet/1.ogg
Binary file not shown.
Binary file added SymphonyQuiet/2.ogg
Binary file not shown.
Binary file added SymphonyQuiet/3.ogg
Binary file not shown.
Binary file added SymphonyQuiet/4.ogg
Binary file not shown.
Binary file added SymphonyQuiet/5.ogg
Binary file not shown.
Loading

0 comments on commit 88e69a1

Please sign in to comment.