summaryrefslogtreecommitdiff
path: root/DiscoBot/Auxiliary/Soundeffects.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-04-11 14:41:01 +0200
committerTrueDoctor <d-kobert@web.de>2018-04-11 14:41:01 +0200
commite5e0c1c5c9fb6afd68ebe9dc075af23f46f11e25 (patch)
tree9caffddadea2851b929efa74531c801d0f8c4454 /DiscoBot/Auxiliary/Soundeffects.cs
parent351067a5203307fc0c1a14ae2be84eae71246af9 (diff)
General Cleanup and retructuring
Diffstat (limited to 'DiscoBot/Auxiliary/Soundeffects.cs')
-rw-r--r--DiscoBot/Auxiliary/Soundeffects.cs66
1 files changed, 0 insertions, 66 deletions
diff --git a/DiscoBot/Auxiliary/Soundeffects.cs b/DiscoBot/Auxiliary/Soundeffects.cs
deleted file mode 100644
index c959156..0000000
--- a/DiscoBot/Auxiliary/Soundeffects.cs
+++ /dev/null
@@ -1,66 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace DiscoBot.Auxiliary
-{
- using System.Runtime.CompilerServices;
- using System.Threading;
-
- using DiscoBot.Commands;
-
- public enum Sound
- {
- Bell,
- Ding,
- Nooo,
- Monterkill,
- Finish,
- Wrong,
- Magic
- }
-
- public static class SoundEffects
- {
- public static async Task Play(Sound s)
- {
- string url = string.Empty;
- 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";
- break;
- case Sound.Nooo:
- url = "https://www.myinstants.com/media/sounds/nooo.swf.mp3";
- break;
- case Sound.Wrong:
- // url = "https://www.myinstants.com/media/sounds/stupid_dum_03.mp3";
- // vol = 10;
- url = "https://www.myinstants.com/media/sounds/wrong-answer-sound-effect.mp3";
- vol = 50;
- break;
- }
-
- if (url != string.Empty)
- {
- // await Dsa.Service.SendAudioAsync(url, vol);
- await Voice.SendAsync(url, vol);
- }
-
- throw new Exception("Ton Existiert nicht");
- }
- }
-}