diff --git a/commands/random/soundboard.js b/commands/random/soundboard.js index ecc03571..d8d33357 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, Doh, It's a Trap, Mario Death, Pokemon Center, Dun Dun Dun, Spongebob, Ugly Barnacle, Woo Hoo"); + message.channel.send("**Available Sounds:** Cat, Pikachu, Vader, Doh, It's a Trap, Mario Death, Pokemon Center, Dun Dun Dun, Spongebob, Ugly Barnacle, Woo Hoo, Space, GLaDOS Bird"); } 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 7a94d6df..e9540593 100644 --- a/commands/random/sounds.json +++ b/commands/random/sounds.json @@ -10,7 +10,9 @@ "dun dun dun": "dun dun dun", "spongebob": "spongebob", "ugly barnacle": "ugly barnacle", - "woo hoo": "woo hoo" + "woo hoo": "woo hoo", + "space": "space", + "glados bird": "glados bird" }, "paths": { "cat": "./sounds/cat.mp3", @@ -23,6 +25,8 @@ "dun dun dun": "./sounds/dun-dun-dun.mp3", "spongebob": "./sounds/spongebob.mp3", "ugly barnacle": "./sounds/ugly-barnacle.mp3", - "woo hoo": "./sounds/woohoo.mp3" + "woo hoo": "./sounds/woohoo.mp3", + "space": "./sounds/space.mp3", + "glados bird": "./sounds/glados-bird.mp3" } } \ No newline at end of file diff --git a/sounds/glados-bird.mp3 b/sounds/glados-bird.mp3 new file mode 100644 index 00000000..41d850ab Binary files /dev/null and b/sounds/glados-bird.mp3 differ diff --git a/sounds/space.mp3 b/sounds/space.mp3 new file mode 100644 index 00000000..0a3ad350 Binary files /dev/null and b/sounds/space.mp3 differ