mrmBot-Matrix/commands/soundboard/boom.js

9 lines
292 B
JavaScript
Raw Normal View History

2023-03-15 14:09:09 +00:00
import SoundboardCommand from "../../classes/soundboardCommand.js";
class BoomCommand extends SoundboardCommand {
static file = "./assets/audio/boom.ogg";
static description = "Plays the Vine boom sound effect";
static aliases = ["thud", "vine"];
}
export default BoomCommand;