-
Notifications
You must be signed in to change notification settings - Fork 0
/
SoltiCore.lua
55 lines (55 loc) · 5.64 KB
/
SoltiCore.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
local LSM = LibStub("LibSharedMedia-3.0")
----------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------
-- Female:
LSM:Register("sound", "Female: Danger", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_danger.mp3")
LSM:Register("sound", "Female: Drums", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_drums.mp3")
LSM:Register("sound", "Female: Link", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_link.mp3")
LSM:Register("sound", "Female: Run Away", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_run_away.mp3")
LSM:Register("sound", "Female: Run In", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_run_in.mp3")
LSM:Register("sound", "Female: Run Out", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_run_out.mp3")
LSM:Register("sound", "Female: Safe", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_safe.mp3")
LSM:Register("sound", "Female: Stack", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_stack.mp3")
LSM:Register("sound", "Female: Stay", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_stay.mp3")
LSM:Register("sound", "Female: Stop", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_stop.mp3")
LSM:Register("sound", "Female: Clear", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_clear.mp3")
LSM:Register("sound", "Female: Disabled", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_disabled.mp3")
LSM:Register("sound", "Female: Stunned", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_stunned.mp3")
LSM:Register("sound", "Female: Armageddon", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_armageddon.mp3")
LSM:Register("sound", "Female: Dispel", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_dispel.mp3")
LSM:Register("sound", "Female: Soak", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Female\\female_soak.mp3")
----------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------
-- Male:
LSM:Register("sound", "Male: Danger", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_danger.mp3")
LSM:Register("sound", "Male: Drums", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_drums.mp3")
LSM:Register("sound", "Male: Link", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_link.mp3")
LSM:Register("sound", "Male: Run Away", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_run_away.mp3")
LSM:Register("sound", "Male: Run In", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_run_in.mp3")
LSM:Register("sound", "Male: Run Out", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_run_out.mp3")
LSM:Register("sound", "Male: Safe", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_safe.mp3")
LSM:Register("sound", "Male: Stack", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_stack.mp3")
LSM:Register("sound", "Male: Stay", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_stay.mp3")
LSM:Register("sound", "Male: Stop", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_stop.mp3")
LSM:Register("sound", "Male: Clear", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_clear.mp3")
LSM:Register("sound", "Male: Disabled", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_disabled.mp3")
LSM:Register("sound", "Male: Stunned", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_stunned.mp3")
LSM:Register("sound", "Male: Armageddon", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_armageddon.mp3")
LSM:Register("sound", "Male: Dispel", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_dispel.mp3")
LSM:Register("sound", "Male: Soak", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Male\\male_soak.mp3")
----------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------
-- Misc:
LSM:Register("sound", "R2D2 scream", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Misc\\r2d2_scream.mp3")
LSM:Register("sound", "Plater Wood", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Misc\\PlaterWood.ogg")
----------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------
-- Notification:
LSM:Register("sound", "Notification: chord (SoltiCore)", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Notifications\\chord.mp3")
LSM:Register("sound", "Notification: drum (SoltiCore)", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Notifications\\drum.mp3")
LSM:Register("sound", "Notification: levelup (SoltiCore)", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Notifications\\levelup.mp3")
LSM:Register("sound", "Notification: ping (SoltiCore)", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Notifications\\ping.mp3")
LSM:Register("sound", "Notification: poly (SoltiCore)", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Notifications\\poly.mp3")
LSM:Register("sound", "Notification: pop (SoltiCore)", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Notifications\\pop.mp3")
LSM:Register("sound", "Notification: success (SoltiCore)", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Notifications\\success.mp3")
LSM:Register("sound", "Notification: warn (SoltiCore)", "Interface\\AddOns\\SoltiCore\\Media\\Sounds\\Notifications\\warn.mp3")