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"];
|
|
|
|
}
|
|
|
|
|
2021-08-19 14:19:14 +00:00
|
|
|
export default BoomCommand;
|