diff --git a/commands/random/soundboard.js b/commands/random/soundboard.js index 3828320c..72fb2604 100644 --- a/commands/random/soundboard.js +++ b/commands/random/soundboard.js @@ -30,7 +30,7 @@ class SoundBoardCommand extends commando.Command { if(soundToPlay === "") { message.channel.send(':x: Error! No sound set. Please use ;soundboard list to see a list of sounds you can play.'); } else if(soundToPlay === 'list') { - message.channel.send('**Available Sounds:** Cat, Pikachu, Vader'); + message.channel.send("**Available Sounds:** Cat, Pikachu, Vader, Doh, It's a Trap, Mario Death"); } else if(soundToPlay === sounds.avaliable[soundToPlay]) { voiceChannel.join().then(connnection => { let stream = sounds.paths[soundToPlay]; diff --git a/commands/random/sounds.json b/commands/random/sounds.json index 75179c94..7cbf1602 100644 --- a/commands/random/sounds.json +++ b/commands/random/sounds.json @@ -2,11 +2,17 @@ "avaliable": { "cat": "cat", "pikachu": "pikachu", - "vader": "vader" + "vader": "vader", + "doh": "doh", + "it's a trap": "it's a trap", + "mario death": "mario death" }, "paths": { "cat": "./sounds/cat.mp3", "pikachu": "./sounds/pikachu.mp3", - "vader": "./sounds/vader.mp3" + "vader": "./sounds/vader.mp3", + "doh": "./sounds/doh.mp3", + "it's a trap": "./sounds/its-a-trap.mp3", + "mario death": "./sounds/mario-death.mp3" } } \ No newline at end of file diff --git a/sounds/doh.mp3 b/sounds/doh.mp3 new file mode 100644 index 00000000..07634a1f Binary files /dev/null and b/sounds/doh.mp3 differ diff --git a/sounds/its-a-trap.mp3 b/sounds/its-a-trap.mp3 new file mode 100644 index 00000000..3d9597dc Binary files /dev/null and b/sounds/its-a-trap.mp3 differ diff --git a/sounds/mario-death.mp3 b/sounds/mario-death.mp3 new file mode 100644 index 00000000..5d97899b Binary files /dev/null and b/sounds/mario-death.mp3 differ