summaryrefslogtreecommitdiff
path: root/DiscoBot/Auxiliary/Soundeffects.cs
diff options
context:
space:
mode:
authorKobert <Kassian.Kobert@gmail.com>2018-04-09 18:16:28 +0200
committerKobert <Kassian.Kobert@gmail.com>2018-04-09 18:16:28 +0200
commit5975fb9de7bb99103aa6e83f7c13834efaddcc7d (patch)
treecce70fb5296a2bfb902207c6f5fe0b9fb2b4ea5c /DiscoBot/Auxiliary/Soundeffects.cs
parentfe80b8701a8baa6ad07e23395b48ae017730db0a (diff)
No more TTS
Diffstat (limited to 'DiscoBot/Auxiliary/Soundeffects.cs')
-rw-r--r--DiscoBot/Auxiliary/Soundeffects.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/DiscoBot/Auxiliary/Soundeffects.cs b/DiscoBot/Auxiliary/Soundeffects.cs
index bc5bbb3..880753d 100644
--- a/DiscoBot/Auxiliary/Soundeffects.cs
+++ b/DiscoBot/Auxiliary/Soundeffects.cs
@@ -10,11 +10,13 @@ namespace DiscoBot.Auxiliary
public enum Sound
{
+ Bell,
Ding,
Nooo,
Monterkill,
Finish,
- Wrong
+ Wrong,
+ Magic
}
public static class SoundEffects
@@ -25,11 +27,15 @@ namespace DiscoBot.Auxiliary
int vol = 256;
switch (s)
{
+ case Sound.Bell:
case Sound.Ding:
url = "https://www.myinstants.com/media/sounds/boxing-bell.mp3";
break;
case Sound.Finish:
url = "https://www.myinstants.com/media/sounds/finishhim.swf.mp3";
+ break;
+ case Sound.Magic:
+ url = "https://www.myinstants.com/media/sounds/dream-harp-sound-effect.mp3";
break;
case Sound.Monterkill:
url = "https://www.myinstants.com/media/sounds/announcer_kill_monster_01.mp3";