From 5975fb9de7bb99103aa6e83f7c13834efaddcc7d Mon Sep 17 00:00:00 2001 From: Kobert Date: Mon, 9 Apr 2018 18:16:28 +0200 Subject: No more TTS --- DiscoBot/Auxiliary/Soundeffects.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'DiscoBot/Auxiliary/Soundeffects.cs') 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"; -- cgit v1.2.3-54-g00ecf