-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSoundPack.lua
70 lines (59 loc) · 3.57 KB
/
SoundPack.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
-- Hear Kitty sample sound pack
-- www.vgermods.com
------------------------------------------------------------
if KittyRegisterSoundPack then
-- TODO: Choose a friendly name for your sound pack that will appear in the UI. It should be unique.
local LocalizedName = "Backwards"
-- TODO: Optionally, include localized versions of the friendly name.
if (GetLocale() == "frFR") then
LocalizedName = "En arrière"
elseif (GetLocale() == "esES" or GetLocale() == "esMX") then
LocalizedName = "Hacia atrás"
end
-- TODO: Choose a unique internal name for your sound pack. It MUST be unique.
KittyRegisterSoundPack("Sample_Backwards", {
LocalizedName = LocalizedName,
-- TODO: Credit yourself!
Credits = "by Vger-Azjol-Nerub",
-- TODO: Adjust the length of your sound effects as necessary
SoundDelay = 0.35, -- the length of all of your sounds (in seconds) except the "0" sounds
LongSoundDelay = 1, -- the length of your "0" sounds
-- TODO: Include the paths to your sounds here. Note that your sounds will be in your own sound pack's
-- folder, not the HearKitty folder. (This sample just reuses the default Marcato sounds.) Note that it's
-- possible to reuse the same sound effect for multiple tones. Your sounds can be in Ogg, MP3, or
-- uncompressed WAV format.
-- Combo5StackSound1 = "Interface\\AddOns\\HearKitty_MySoundPackName\\1.mp3",
-- You MUST include the six Combo5 sounds. If you don't have more sounds to use, Hear Kitty 1.9.6 or later
-- will reuse sounds from those if you don't define sounds for resources that stack to 3, 4, 6, or 7.
Combo7StackSound0 = "Interface\\AddOns\\HearKitty\\Marcato\\0.ogg",
Combo7StackSound1 = "Interface\\AddOns\\HearKitty\\Marcato\\5.ogg",
Combo7StackSound2 = "Interface\\AddOns\\HearKitty\\Marcato\\4a.ogg",
Combo7StackSound3 = "Interface\\AddOns\\HearKitty\\Marcato\\4.ogg",
Combo7StackSound4 = "Interface\\AddOns\\HearKitty\\Marcato\\3a.ogg",
Combo7StackSound5 = "Interface\\AddOns\\HearKitty\\Marcato\\3.ogg",
Combo7StackSound6 = "Interface\\AddOns\\HearKitty\\Marcato\\2.ogg",
Combo7StackSound7 = "Interface\\AddOns\\HearKitty\\Marcato\\1.ogg",
Combo6StackSound0 = "Interface\\AddOns\\HearKitty\\Marcato\\0.ogg",
Combo6StackSound1 = "Interface\\AddOns\\HearKitty\\Marcato\\5.ogg",
Combo6StackSound2 = "Interface\\AddOns\\HearKitty\\Marcato\\4.ogg",
Combo6StackSound3 = "Interface\\AddOns\\HearKitty\\Marcato\\3a.ogg",
Combo6StackSound4 = "Interface\\AddOns\\HearKitty\\Marcato\\3.ogg",
Combo6StackSound5 = "Interface\\AddOns\\HearKitty\\Marcato\\2.ogg",
Combo6StackSound6 = "Interface\\AddOns\\HearKitty\\Marcato\\1.ogg",
Combo5StackSound0 = "Interface\\AddOns\\HearKitty\\Marcato\\0.ogg",
Combo5StackSound1 = "Interface\\AddOns\\HearKitty\\Marcato\\5.ogg",
Combo5StackSound2 = "Interface\\AddOns\\HearKitty\\Marcato\\4.ogg",
Combo5StackSound3 = "Interface\\AddOns\\HearKitty\\Marcato\\3.ogg",
Combo5StackSound4 = "Interface\\AddOns\\HearKitty\\Marcato\\2.ogg",
Combo5StackSound5 = "Interface\\AddOns\\HearKitty\\Marcato\\1.ogg",
Combo4StackSound0 = "Interface\\AddOns\\HearKitty\\Marcato\\0.ogg",
Combo4StackSound1 = "Interface\\AddOns\\HearKitty\\Marcato\\5.ogg",
Combo4StackSound2 = "Interface\\AddOns\\HearKitty\\Marcato\\4.ogg",
Combo4StackSound3 = "Interface\\AddOns\\HearKitty\\Marcato\\3.ogg",
Combo4StackSound4 = "Interface\\AddOns\\HearKitty\\Marcato\\1.ogg",
Combo3StackSound0 = "Interface\\AddOns\\HearKitty\\Marcato\\0.ogg",
Combo3StackSound1 = "Interface\\AddOns\\HearKitty\\Marcato\\5.ogg",
Combo3StackSound2 = "Interface\\AddOns\\HearKitty\\Marcato\\4.ogg",
Combo3StackSound3 = "Interface\\AddOns\\HearKitty\\Marcato\\2.ogg",
})
end