mrmBot-Matrix/commands/soundboard/boom.js

13 lines
375 B
JavaScript
Raw Normal View History

import { play } from "../../utils/soundplayer.js";
import MusicCommand from "../../classes/musicCommand.js";
class BoomCommand extends MusicCommand {
async run() {
return await play(this.client, "./assets/audio/boom.ogg", this.message);
}
static description = "Plays the Vine boom sound effect";
static aliases = ["thud", "vine"];
}
export default BoomCommand;