diff --git a/assets/audio/jesus_wtf.mp3 b/assets/audio/jesus_wtf.mp3 new file mode 100644 index 0000000..f48b710 Binary files /dev/null and b/assets/audio/jesus_wtf.mp3 differ diff --git a/assets/audio/meow.mp3 b/assets/audio/meow.mp3 new file mode 100644 index 0000000..3a46a7f Binary files /dev/null and b/assets/audio/meow.mp3 differ diff --git a/assets/audio/moo.mp3 b/assets/audio/moo.mp3 new file mode 100644 index 0000000..1770cec Binary files /dev/null and b/assets/audio/moo.mp3 differ diff --git a/assets/audio/pika.mp3 b/assets/audio/pika.mp3 new file mode 100644 index 0000000..905f859 Binary files /dev/null and b/assets/audio/pika.mp3 differ diff --git a/assets/audio/psycho.mp3 b/assets/audio/psycho.mp3 index a3789e1..c70f6bf 100644 Binary files a/assets/audio/psycho.mp3 and b/assets/audio/psycho.mp3 differ diff --git a/assets/audio/transition.mp3 b/assets/audio/transition.mp3 new file mode 100644 index 0000000..0d246a9 Binary files /dev/null and b/assets/audio/transition.mp3 differ diff --git a/assets/audio/wilhelm.mp3 b/assets/audio/wilhelm.mp3 new file mode 100644 index 0000000..27045e6 Binary files /dev/null and b/assets/audio/wilhelm.mp3 differ diff --git a/assets/audio/wtf.mp3 b/assets/audio/wtf.mp3 new file mode 100644 index 0000000..d3d91ea Binary files /dev/null and b/assets/audio/wtf.mp3 differ diff --git a/js/app.js b/js/app.js index 2965cfc..fd9f096 100644 --- a/js/app.js +++ b/js/app.js @@ -19,10 +19,21 @@ const TimeTrack = { importStringForPortals: '', publicDB: false, fun: false, - sounds: [ - // 'psycho', - 'alert' - ], + sounds: { + bad: [ + 'alert', + 'wilhelm', + 'wtf', + 'jesus_wtf' + ], + animals: [ + 'meow', + 'moo', + 'quack', + 'pika', + 'transition' + ] + }, } }, mounted() { @@ -112,7 +123,7 @@ const TimeTrack = { let noNoTickets = ['#1920', '#3110', '#2492', '#2419', '#1256']; if (this.fun && noNoTickets.includes(ticket.number)) { - playSound(oneOf(this.sounds)) + playSound(oneOf(this.sounds.bad)) } this.$forceUpdate(); @@ -355,7 +366,7 @@ const TimeTrack = { message: 'Portal-Wechsel erfolgreich', color: 'green' }); - playSound('quack'); + playSound(oneOf(vue.sounds.animals)); vue.updateStorage(); }) },